:root {
    --blue: #4a9fd4;
    --blue-dark: #2d7eb8;
    --blue-light: #d6eaf8;
    --blue-xlight: #eaf4fb;
    --white: #ffffff;
    --gray: #f5f8fb;
    --text: #1a2636;
    --text-mid: #4a5a6a;
    --text-light: #7a90a4;
    --shadow: 0 4px 24px rgba(74, 159, 212, 0.13);
    --shadow-lg: 0 8px 48px rgba(74, 159, 212, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ======================== NAVBAR ======================== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    filter: drop-shadow(0 8px 32px rgba(74, 159, 212, 0.18));
}

.navbar-layer-top {
    background: var(--blue-dark);
    padding: 6px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.navbar-layer-top span {
    margin: 0 18px;
}

.navbar-layer-top a {
    color: var(--white);
    text-decoration: none;
}

.navbar-main {
    background: var(--white);
    border-bottom: 3px solid var(--blue);
    box-shadow: 0 4px 20px rgba(74, 159, 212, 0.15);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 62px;
    height: 62px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(74, 159, 212, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.nav-logo-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-logo:hover .nav-logo-icon {
    transform: scale(1.07) rotate(-4deg);
    box-shadow: 0 8px 28px rgba(74, 159, 212, 0.45);
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-text .brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--blue-dark);
    letter-spacing: 0.3px;
}

.nav-logo-text .sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color 0.2s, transform 0.2s;
    position: relative;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.25s;
    border-radius: 2px 2px 0 0;
}

.nav-links>li>a:hover {
    color: var(--blue);
    transform: translateY(-1px);
}

.nav-links>li>a:hover::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-top: 3px solid var(--blue);
    box-shadow: 0 12px 40px rgba(74, 159, 212, 0.18);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 100;
}

.nav-links>li:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 11px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    border-bottom: 1px solid var(--blue-light);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.nav-dropdown a:hover {
    background: var(--blue-xlight);
    color: var(--blue-dark);
    padding-left: 26px;
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 12px 22px !important;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 14px rgba(74, 159, 212, 0.35);
    margin-left: 10px;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(74, 159, 212, 0.45) !important;
}

/* ======================== HERO ======================== */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #7dc8e8 100%);
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 60px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-circle {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.hero-circle2 {
    position: absolute;
    right: 80px;
    bottom: -160px;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: heroFadeIn 0.9s ease both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    padding: 6px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #c8e8f6;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white);
    color: var(--blue-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    transform: translateY(-3px);
}

.hero-image-strip {
    display: flex;
    gap: 16px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
    min-width: 130px;
    backdrop-filter: blur(8px);
}

.hero-stat .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: white;
}

.hero-stat .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ======================== WHY CHOOSE US ======================== */
.section {
    padding: 90px 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
}

.section-title span {
    color: var(--blue);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-mid);
    margin-top: 12px;
    line-height: 1.7;
    max-width: 560px;
}

.section-divider {
    width: 54px;
    height: 4px;
    background: var(--blue);
    border-radius: 3px;
    margin: 14px 0 18px;
}

.why-us {
    background: var(--gray);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.why-left .long-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-top: 22px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 32px;
}

.feat-box {
    background: var(--white);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--blue);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.feat-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--blue-xlight);
    border-radius: 0 0 0 60px;
}

.feat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feat-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.feat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.feat-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ======================== SERVICES ======================== */
.services-section {
    background: var(--white);
}

.services-grid {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse>* {
    direction: ltr;
}

.service-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-xlight));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--blue-dark);
}

.service-img-icon {
    font-size: 72px;
}

.service-img-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--blue-dark);
    letter-spacing: 0.5px;
}

.service-tag {
    display: inline-block;
    background: var(--blue-xlight);
    color: var(--blue-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 22px;
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 26px;
    border-radius: 7px;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(74, 159, 212, 0.3);
}

.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 159, 212, 0.4);
}

/* ======================== FAQ ======================== */
.faq-section {
    background: var(--gray);
}

.faq-list {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-item {
    background: var(--white);
    border-bottom: 1px solid var(--blue-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.2s;
    gap: 16px;
}

.faq-question:hover {
    background: var(--blue-xlight);
}

.faq-q-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.faq-city {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--blue-xlight);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    transition: transform 0.3s, background 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    border-top: 1px solid var(--blue-xlight);
    padding-top: 16px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--blue-dark);
}

/* ======================== SERVICE AREAS ======================== */
.areas-section {
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 44px;
}

.area-chip {
    background: var(--blue-xlight);
    border: 1.5px solid var(--blue-light);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--blue-dark);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
}

.area-chip:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.area-chip .area-dist {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2px;
}

.area-chip:hover .area-dist {
    color: rgba(255, 255, 255, 0.75);
}

/* ======================== ADDITIONAL SERVICES ======================== */
.add-services {
    background: var(--gray);
}

.add-grid {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.add-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.add-block.reverse {
    direction: rtl;
}

.add-block.reverse>* {
    direction: ltr;
}

.add-img {
    border-radius: 16px;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--blue), #7dc8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    font-size: 64px;
}

.add-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
}

.add-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.add-list {
    list-style: none;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.add-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
}

.add-list li::before {
    content: '✔';
    color: var(--blue);
    font-weight: 900;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ======================== HOW WE WORK ======================== */
.how-section {
    background: var(--blue-dark);
    padding: 90px 60px;
}

.how-section .section-title {
    color: white;
}

.how-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.how-section .section-divider {
    background: rgba(255, 255, 255, 0.4);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 32px 22px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
    transition: background 0.25s, transform 0.25s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.17);
    transform: translateY(-6px);
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--white);
    color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

/* ======================== CONTACT ======================== */
.contact-section {
    background: var(--white);
    padding: 90px 60px;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-placeholder {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
    background: linear-gradient(135deg, var(--blue-xlight), var(--blue-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px solid var(--blue-light);
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
    position: absolute;
    inset: 0;
}

.map-pin {
    font-size: 56px;
}

.map-addr {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--blue-dark);
    text-align: center;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-box .section-title {
    margin-bottom: 6px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--gray);
    border-radius: 14px;
    padding: 20px 22px;
    border-left: 4px solid var(--blue);
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74, 159, 212, 0.3);
}

.contact-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-card-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.contact-card-val a {
    color: var(--blue-dark);
    text-decoration: none;
}

.contact-card-val a:hover {
    color: var(--blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--blue-light);
    border-radius: 9px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--gray);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 159, 212, 0.12);
    background: white;
}

.contact-form button {
    background: var(--blue);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    padding: 14px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(74, 159, 212, 0.3);
}

.contact-form button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 159, 212, 0.4);
}

/* ======================== FOOTER DRAWER ======================== */
.footer-drawer {
    background: #12202e;
    padding: 60px 60px 0;
}

.drawer-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.drawer-item {
    border-bottom: 2px solid rgba(74, 159, 212, 0.3);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.drawer-head {
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    transition: background 0.2s;
}

.drawer-head:hover {
    background: rgba(74, 159, 212, 0.18);
}

.drawer-toggle {
    color: var(--blue);
    font-size: 18px;
    transition: transform 0.3s;
}

.drawer-item.open .drawer-toggle {
    transform: rotate(180deg);
}

.drawer-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(255, 255, 255, 0.03);
}

.drawer-item.open .drawer-body {
    max-height: 300px;
}

.drawer-body-inner {
    padding: 14px 18px;
}

.drawer-body-inner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 10px;
}

.drawer-body-inner a {
    font-size: 12.5px;
    color: var(--blue);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.drawer-body-inner a:hover {
    color: #7dc8e8;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-txt {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
}

.footer-brand .logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--blue);
    text-decoration: none;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 900px) {

    .why-inner,
    .service-block,
    .add-block,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .service-block.reverse,
    .add-block.reverse {
        direction: ltr;
    }

    .steps-row {
        grid-template-columns: 1fr 1fr;
    }

    .steps-row::before {
        display: none;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .drawer-services {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .section,
    .how-section,
    .contact-section,
    .footer-drawer {
        padding: 60px 24px;
    }

    .navbar-main {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 24px 50px;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d2d2d;
    --accent: #4a9fd4;
    --light: #f5f5f3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border: #e8e8e6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION: IMAGE FIRST LAYOUT
   ============================================ */

.hero-image-first {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light) 0%, #fafaf8 100%);
    padding: 60px 20px;
    position: relative;
}

/* Top accent line */
.hero-image-first::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    animation: slideDown 0.8s ease-out;
}

/* ============================================
   IMAGE CONTAINER: Centered, elevated visual
   ============================================ */

.hero-image-container {
    width: 100%;
    max-width: 700px;
    margin-bottom: 60px;
    animation: fadeInScale 1s ease-out;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 4 / 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Decorative corner accent - top left */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    z-index: 10;
    opacity: 0;
    animation: cornerAccent 0.8s ease-out 0.3s forwards;
}

/* Decorative corner accent - bottom right */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    z-index: 10;
    opacity: 0;
    animation: cornerAccent 0.8s ease-out 0.5s forwards;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: imageReveal 0.8s ease-out;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ============================================
   CONTENT SECTION: Below image
   ============================================ */

.hero-content {
    width: 100%;
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Location badge - refined minimal */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-bottom: 24px;
    background: rgba(212, 165, 116, 0.08);
    border: 1px solid var(--accent);
    border-radius: 30px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.location-badge i {
    font-size: 14px;
}

/* Main Heading - bold serif showcase */
.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    letter-spacing: -1px;
}

.hero-heading span {
    background: linear-gradient(135deg, var(--accent), #c9945d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-heading span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    animation: underlineGrow 0.8s ease-out 0.6s forwards;
}

/* Description - elegant, spacious */
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ============================================
   CTA BUTTONS: Stacked or centered
   ============================================ */

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0;
    border: 2px solid;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button */
.btn-primary {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.2);
}

.btn-primary i {
    font-size: 14px;
    transition: transform 0.4s ease-out;
}

.btn-primary:hover i {
    transform: translateX(6px);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-4px);
}

.btn-secondary i {
    font-size: 12px;
    transition: transform 0.4s ease-out;
}

.btn-secondary:hover i {
    transform: translateX(6px);
}

/* ============================================
   TRUST SIGNATURE: Social proof
   ============================================ */

.trust-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-signature span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.trust-signature i {
    color: var(--accent);
    font-size: 16px;
}

.trust-signature .divider {
    width: 2px;
    height: 20px;
    background: var(--border);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imageReveal {
    from {
        opacity: 0;
        clip-path: inset(10% 10% 10% 10%);
    }

    to {
        opacity: 1;
        clip-path: inset(0);
    }
}

@keyframes cornerAccent {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGrow {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-image-first {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-image-container {
        margin-bottom: 40px;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-signature {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .trust-signature .divider {
        display: none;
    }

    .location-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* ============================================
   SCROLL REVEAL ENHANCEMENT
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
    .hero-image-first {
        animation: fadeInDown 0.6s ease-out;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}