.hero {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 40px 8%;
    min-height: 100vh;
    background: linear-gradient(135deg, #343434, #f7941d);
    color: #fff;
    flex-wrap: wrap;
}

.hero .hero-left {
    max-width: 550px;
}

.hero .hero-left h1 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .hero-left p {
    font-size: 15px;
    color: #dcdcdc;
    margin-bottom: 25px;
}

.hero .hero-buttons {
    display: flex;
    gap: 15px;
}

.hero .btn {
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.hero .btn-primary {
    background: #f4b400;
    color: #000;
}

.hero .btn-primary:hover {
    background: #ffcc33;
}

.hero .btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.hero .btn-outline:hover {
    background: #fff;
    color: #000;
}

.hero .hero-image {
    position: relative;
}

/* .hero .hero-image img {
    width: 320px;
    z-index: 2;
    position: relative;
} */

/* Form Card */
.hero .form-card {
    position: relative;
    /* right: -40px; */
    /* top: 30px; */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero .form-card h3 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
}

.hero .form-card input,
.hero .form-card textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 13px;
}

.hero .form-card textarea {
    resize: none;
    height: 60px;
}

.hero .form-card button {
    width: 100%;
    padding: 10px;
    background: #f4b400;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* SECTION */
.services {
    padding: 80px 8%;
    /* background: radial-gradient(circle at top left, #1a1f35, #0c0f1c); */
    background: radial-gradient(circle at left, #6b4a2c, #0c0f1c);
    text-align: center;
}

/* TOP TEXT */
.services small {
    color: #ff914d;
    letter-spacing: 2px;
    font-size: 12px;
}

.services h2 {
    font-size: 40px;
    margin: 15px 0 50px;
    color: #f4b400;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 25px;
    border-radius: 15px;
    border: 2px dashed #ff914d;
    text-align: left;
    transition: 0.4s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 145, 77, 0.2);
}

/* IMAGE */
.service-card img {
    width: 120px;
    display: block;
    margin: 0 auto 20px;
}

/* TITLE */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff914d;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.process-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
    /* font-family: 'Poppins', sans-serif; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f2f2f2;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 109, 21, 0.2);
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    /* color: rgba(245, 144, 85, 0.15); */
    color: rgba(255, 109, 21, 0.8);
    /* position: absolute; */
    position: revert-layer;
    /* top: 15px;
    right: 20px; */
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.process-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* SECTION */
.process {
    padding: 80px 8%;
    text-align: center;
    background: radial-gradient(circle at left, #6b4a2c, #0c0f1c);
}

/* HEADINGS */
.process h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ccc;
}

.process p.top-text {
    color: #ccc;
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* GRID */
.process .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.process .process-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 25px;
    border-radius: 15px;
    border: 2px dashed #ff914d;
    text-align: left;
    transition: 0.4s;
}

.process .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 145, 77, 0.2);
}

/* IMAGE */
.process .process-card img {
    width: 120px;
    display: block;
    margin: 0 auto 20px;
}

/* TITLE */
.process .process-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f4b400;
}

/* TEXT */
.process .process-card p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
}

/* BUTTONS */
.process .process-buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process .btn {
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

/* ORANGE BUTTON */
.process .btn-orange {
    background: #ff914d;
    color: #fff;
}

.process .btn-orange:hover {
    background: #ff7a2d;
}

/* GREEN BUTTON */
.process .btn-green {
    background: #2f7f5f;
    color: #fff;
}

.process .btn-green:hover {
    background: #256a50;
}

.cta-section {
    padding: 40px 0;
    position: relative;
    clear: both;
    scroll-behavior: smooth !important;
}

.cta-section .cta {
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    padding: 100px 40px;
}

.cta-section .cta a {
    float: left;
}

.cta-section .cta h3 {
    font-size: 48px;
    text-transform: capitalize;
    text-align: left;
    -webkit-text-stroke: 1px #4b8a71;
    font-weight: bold;
    line-height: 51px;
    color: white;
}

.cta-section .btn-orange {
    background: #f59055 !important;
    border-color: #f59055 !important;
}

.cta-section .btn-green,
.cta-section .btn-orange,
.cta-section .btn-white-border {
    padding: 8px 30px;
    background: #548a70;
    border-radius: 30px;
    color: #fff !important;
    border: 2px solid #548a70;
    font-size: 15px !important;
    text-transform: uppercase;
    transition: .5s;
    position: relative;
    margin-right: 20px;
    z-index: 1;
}

.guide-section {
    padding: 80px 20px;
    /* background: #fff; */
    background: linear-gradient(135deg, #F59055, #ffb48a);
}

.guide-section .container {
    max-width: 1200px;
    margin: auto;
}

.guide-section .section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.guide-section .intro-text {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.guide-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.guide-section .content-block {
    background: #fafafa;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.guide-section .content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guide-section .content-block.highlight {
    background: linear-gradient(180deg, #fff7f2 0%, #ffffff 100%);
    border: 1px solid rgba(245, 144, 85, 0.3);
}

.guide-section .content-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.guide-section .content-block p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guide-section .styled-list {
    padding-left: 18px;
    margin-bottom: 15px;
}

.guide-section .styled-list li {
    margin-bottom: 8px;
    color: #444;
    position: relative;
}

/* CTA Box */
.guide-section .cta-box {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    /* background: linear-gradient(135deg, #F59055, #ffb48a); */
    background: #444;
    color: #fff;
}

.guide-section .cta-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.guide-section .cta-box p {
    margin-bottom: 20px;
    font-size: 15px;
}

.guide-section .cta-btn {
    display: inline-block;
    background: #fff;
    color: #F59055;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.guide-section .cta-btn:hover {
    background: #1c1c1c;
    color: #fff;
}

/* SECTION */
.why-section {
    padding: 80px 8%;
    /* background: linear-gradient(135deg, #0c0f1c, #1a223f); */
    background: radial-gradient(circle at left, #6b4a2c, #0c0f1c);
    color: #fff;
}

/* CONTAINER */
.why-section .why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.why-section .why-left {
    flex: 1;
}

.why-section .why-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-section .why-left p {
    font-size: 14px;
    color: #ccc;
    margin-top: 20px;
    line-height: 1.6;
}

/* LIST */
.why-section .why-list {
    margin-top: 25px;
}

.why-section .why-list li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #eee;
}

/* CHECK ICON */
.why-section .why-list li::before {
    content: "✔";
    color: #ff914d;
    font-weight: bold;
    margin-right: 12px;
}

/* RIGHT CARD */
.why-section .why-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    padding: 40px;
    border: 2px dashed #ff914d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* HIGHLIGHT TEXT */
.why-section .highlight {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
}

.faq-section {
    padding: 80px 20px;
    background: #fff7f2;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1c1c;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: #F59055;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-question:hover {
    background: #fff2ea;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 18px 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;

}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 300px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-container {
        flex-direction: column;
    }

    .why-left h2 {
        font-size: 28px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .guide-section .content-grid {
        grid-template-columns: 1fr;
    }

    .guide-section .section-title {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .process .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process .process-grid {
        grid-template-columns: 1fr;
    }

    .process h2 {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero .hero-image {
        margin-top: 40px;
    }

    .hero .form-card {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .services h2 {
        font-size: 28px;
    }
}
