/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --navy-mid: #0f2040;
    --navy-light: #162d50;
    --blue: #1a6fb5;
    --blue-light: #4a9fd8;
    --blue-pale: #eaf4fb;
    --gray-lightest: #f9fafb;
    --gray-light: #f1f3f5;
    --gray: #5c6b7a;
    --gray-dark: #2d3a4a;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.04);
    --shadow: 0 4px 24px rgba(10, 22, 40, 0.07);
    --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.10);
    --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.14);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Google Sans', 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.section-subtitle {
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray);
    max-width: 100%;
    margin: 0 auto 48px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(26, 111, 181, 0.3);
}

.btn-primary:hover {
    background: #155d99;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 111, 181, 0.4);
}

.btn-cta {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.3);
    font-size: 1rem;
    padding: 18px 42px;
}

.btn-cta:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10, 22, 40, 0.4);
}

.btn-outline {
    background: var(--blue);
    color: #ffffff;
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25);
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10, 22, 40, 0.3);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar span {
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg {
    opacity: 0.7;
}

/* ===== HEADER / NAV ===== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 46px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    padding: 6px 0;
    font-size: 0.92rem;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--blue);
}

.nav .btn {
    padding: 11px 26px;
    font-size: 0.85rem;
    color: #ffffff;
}

.nav .btn::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(15, 32, 64, 0.85) 50%,
        rgba(22, 45, 80, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 58%;
    padding: 90px 0;
    text-align: left;
}

.hero-content .section-subtitle {
    color: var(--blue-light);
    margin-bottom: 16px;
    text-align: left;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    padding: 0;
    margin-top: -48px;
    position: relative;
    z-index: 10;
}

.features-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.feature-item {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    transition: var(--transition);
}

.feature-item:hover::after {
    width: 50px;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: var(--gray-lightest);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--blue);
    font-size: 1.4rem;
}

.feature-item h4 {
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.86rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -8px;
    bottom: -8px;
    background: var(--blue-pale);
    border-radius: var(--radius);
    z-index: -1;
}

.about-content .section-subtitle {
    margin-bottom: 8px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 14px;
    font-size: 0.98rem;
    line-height: 1.8;
}

.about-list {
    margin: 0px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.93rem;
}

.about-list li svg {
    flex-shrink: 0;
    color: var(--blue);
}

/* ===== AREAS WE SERVE ===== */
.areas-section {
    padding: 100px 0;
    background: var(--gray-lightest);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.areas-text .section-subtitle {
    margin-bottom: 8px;
}

.areas-text h2 {
    margin-bottom: 16px;
}

.areas-text > p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.8;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.area-item:hover {
    background: var(--blue-pale);
    color: var(--blue);
    border-color: rgba(26, 111, 181, 0.15);
}

.area-item svg {
    color: var(--blue);
    flex-shrink: 0;
}

.areas-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.areas-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* ===== HIGHLIGHTS STRIP ===== */
.highlights-strip {
    padding: 0;
    background: var(--white);
    border: 1px solid var(--gray-light);
}

.highlights-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 50px;
    border-right: 1px solid var(--gray-light);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}

.highlight-item h4 {
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--gray-lightest);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
.services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
.services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }
.services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.75;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
    padding: 80px 0;
    background: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.highlight-card {
    text-align: center;
    padding: 44px 28px;
    border-radius: var(--radius);
    background: var(--gray-lightest);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(26, 111, 181, 0.15);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
    color: var(--blue);
}

.highlight-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 70px 0;
    background: #efeff0;
    text-align: center;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-section h2 {
    color: var(--navy);
    margin-bottom: 4px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-section p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    padding: 90px 0 70px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(26, 111, 181, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 14px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.02rem;
}

.page-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3.5px;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.contact-section {
    padding: 90px 0;
    background: var(--gray-lightest);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
}

.contact-info {
    background: var(--navy);
    color: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(26, 111, 181, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-size: 0.93rem;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(74, 159, 216, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue-light);
}

.contact-detail-text h4 {
    color: var(--white);
    font-size: 0.88rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.contact-detail-text a {
    color: rgba(255, 255, 255, 0.85);
}

.contact-detail-text a:hover {
    color: var(--white);
}

.contact-hours {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.contact-hours h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 0.93rem;
}

.contact-hours p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
    line-height: 2;
}

.contact-form-wrap {
    background: var(--white);
    padding: 44px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-form-wrap h3 {
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    color: var(--gray);
    margin-bottom: 28px;
    font-size: 0.93rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
    font-size: 0.84rem;
    color: var(--gray-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e4e8ee;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-lightest);
    color: var(--gray-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9daab8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 111, 181, 0.1);
    background: var(--white);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 44px;
    padding-bottom: 56px;
}

.footer-about .logo img {
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin-top: 18px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    color: var(--blue-light);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== SERVICES PAGE ===== */
.services-detail {
    padding: 90px 0;
    background: var(--white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-detail-card:first-child {
    padding-top: 0;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.03);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-detail-content p {
    color: var(--gray-dark);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.96rem;
}

.service-detail-content ul {
    margin: 18px 0;
}

.service-detail-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    color: var(--gray-dark);
    font-size: 0.93rem;
    font-weight: 500;
}

.service-detail-content ul li svg {
    color: var(--blue);
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid,
    .areas-content,
    .contact-grid,
    .service-detail-card,
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 36px;
    }

    .service-detail-card:nth-child(even) > * {
        direction: ltr;
    }

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

    .features-strip .container {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
    }

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

    .about-image::before {
        display: none;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .highlights-strip .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
        padding: 20px 24px;
        width: 100%;
    }

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

    .top-bar {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 9999;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.05rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 10000;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 60px 0;
        max-width: 100%;
    }

    .features-strip {
        margin-top: -28px;
    }

    .about-section,
    .services-section,
    .highlights-section {
        padding: 70px 0;
    }

    .about-image img,
    .areas-image img {
        height: 260px;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

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

    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }

    .page-hero {
        padding: 60px 0 45px;
    }

    .contact-form-wrap {
        padding: 28px 22px;
    }

    .contact-info {
        padding: 32px 24px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .highlight-card {
        padding: 32px 24px;
    }

    .btn-cta {
        font-size: 0.92rem;
        padding: 16px 32px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.3s; }
.highlights-grid .highlight-card:nth-child(2) { transition-delay: 0.1s; }
.highlights-grid .highlight-card:nth-child(3) { transition-delay: 0.2s; }

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.4);
    z-index: 9990;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== SMOOTH SCROLL INDICATOR ===== */
.header.scrolled {
    box-shadow: var(--shadow);
}
