/* ============================================================
   INDEX.CSS — Styles for the Home (Index) Page
   Self-contained except base.css (reset + variables)
   ============================================================ */

/* ── 1. Typography ─────────────────────────────────────────── */

body {
    font-family: var(--font-body);
    color: var(--deep-charcoal);
    background-color: var(--cream);
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark-brown);
    text-shadow: none;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: normal;
    transform: none;
    color: var(--dark-brown);
}

h2 {
    font-size: 36px;
    color: var(--dark-brown);
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
    font-family: var(--font-heading);
}

p {
    margin-bottom: var(--space-md);
    color: var(--deep-charcoal);
}

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

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

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

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: normal;
    font-family: inherit;
}

.text-bold {
    font-weight: 700;
}

/* ── 2. Section Title ──────────────────────────────────────── */

.section-title {
    position: relative;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--dark-brown);
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 0;
    box-shadow: none;
}

/* ── 3. Buttons ────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-brown) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.45);
    background: linear-gradient(135deg, #ddb68a 0%, var(--dark-brown) 100%);
}

/* Shimmer effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

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

.btn-secondary:hover {
    background-color: var(--dark-brown);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 64, 51, 0.25);
}

.btn-secondary.dark-mode {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary.dark-mode:hover {
    background-color: var(--white);
    color: var(--military-green);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ── 4. Cards ──────────────────────────────────────────────── */

.card-service {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.card-service-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.card-service:hover .card-service-img {
    transform: scale(1.05);
}

.card-service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-service-content h3 {
    margin-bottom: var(--space-sm);
    color: var(--dark-brown);
    font-size: 24px;
    font-weight: 700;
}

.card-service-content p {
    flex-grow: 1;
    margin-bottom: var(--space-md);
    color: var(--deep-charcoal);
    line-height: 1.6;
}

.card-feature {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.card-feature:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--white);
    font-size: 32px;
}

/* ── 5. Layout ─────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background-color: #F9F9F9;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    margin: 0;
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* Flex Utilities */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

/* ── 6. Navigation ─────────────────────────────────────────── */

header {
    background: rgba(44, 44, 44, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--primary-gold);
    height: 70px;
    position: sticky;
    top: 20px;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 0 10px;
}

header.scrolled {
    width: 95%;
    top: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 20px;
}

/* Logo — inline version (flex layout with image) */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--white);
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 30px;
}

.nav-link {
    font-family: var(--font-stats);
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-brown);
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-gold);
}

.phone-btn {
    background: linear-gradient(135deg, var(--military-green), #3a4a1c);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: var(--space-md);
    transition: var(--transition-normal);
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
    font-family: var(--font-stats);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-gold);
}

.phone-btn i {
    font-size: 14px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1001;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-overlay .nav-link {
    color: var(--white);
    font-size: 24px;
    margin: var(--space-sm) 0;
    background: none;
    padding: 10px;
}

.mobile-nav-overlay .nav-link:hover {
    color: var(--primary-gold);
    background: none;
    box-shadow: none;
    text-shadow: 0 0 10px var(--primary-gold);
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-gold);
    font-size: 32px;
    background: none;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    background: var(--primary-gold);
    color: var(--dark-brown);
}

/* ── 7. Dropdown Styles ────────────────────────────────────── */

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

/* Hover Shield: bridges the gap between header and menu */
.nav-dropdown:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 280px;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;
    padding: 10px 0;
    transition: all 0.25s ease;
    opacity: 0;
    visibility: hidden;
}

.nav-dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-stats);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    white-space: normal;
    line-height: 1.4;
    text-align: left;
}

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

.nav-dropdown-content a:hover {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    margin-bottom: 15px;
    width: 100%;
    align-items: center;
}

.mobile-submenu .nav-link {
    font-size: 14px !important;
    margin: 0 !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.5px !important;
}

/* ── 8. Footer ─────────────────────────────────────────────── */

footer {
    background-color: #1a1a1a;
    color: var(--cream);
    padding: var(--space-xl) 0 var(--space-md);
    font-size: 14px;
    border-top: 2px solid var(--primary-gold);
}

footer > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    flex: 1;
    min-width: 0;
}

.footer-map {
    width: 300px;
    flex-shrink: 0;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    display: block;
}

.footer-bottom {
    flex-basis: 100%;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: #ccc;
}

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

ul.footer-links li a {
    color: #ccc;
    font-size: 15px;
    transition: var(--transition-fast);
    display: inline-block;
}

ul.footer-links li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* ── 9. Home Hero ──────────────────────────────────────────── */

.hero-section {
    height: 93vh;
    background-color: var(--cream);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: var(--deep-charcoal);
    padding: 140px 5% 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-bg-left,
.hero-bg-right {
    position: absolute;
    bottom: 0;
    height: 95%;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.hero-bg-left {
    left: 0;
    transform: translateX(-10%);
}

.hero-bg-right {
    height: 170%;
    right: 0;
    transform: translateX(25%);
    top: -21%;
}

.hero-bg-left img,
.hero-bg-right img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(10px 0 20px rgba(0, 0, 0, 0.1));
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--deep-charcoal);
    margin-bottom: var(--space-md);
    text-shadow: none;
    font-size: 56px;
    z-index: 4;
    position: relative;
}

.hero-content p {
    font-size: 20px;
    color: var(--deep-charcoal);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 240px;
}

/* Hero call button */
.hero-btn-secondary {
    color: var(--dark-brown) !important;
    border-color: var(--dark-brown) !important;
}

.hero-btn-secondary:hover {
    background-color: var(--dark-brown) !important;
    color: var(--cream) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ── 10. Why Choose Us ─────────────────────────────────────── */

#why-choose-us {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/compressed/4.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: var(--space-xxl) 0;
}

#why-choose-us .section-title {
    color: var(--primary-gold);
    font-size: 42px;
    margin-bottom: var(--space-xl);
}

#why-choose-us .section-title::after {
    background-color: var(--white);
}

#why-choose-us .card-feature {
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#why-choose-us .feature-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    color: var(--primary-gold);
    font-size: 48px;
    margin: 0 0 var(--space-sm) 0;
    display: block;
    padding: 0;
}

#why-choose-us .card-feature h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

#why-choose-us .card-feature p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

#why-choose-us .card-feature:hover {
    background: transparent;
    border: none;
    transform: translateY(-5px);
}

#why-choose-us .grid-4 {
    gap: var(--space-xl);
}

/* ── 11. Testimonials ──────────────────────────────────────── */

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    font-size: 16px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 16px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--sage-green);
}

/* ── Reviews Carousel ──────────────────────────────────────── */

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.reviews-track .testimonial-card {
    flex-shrink: 0;
    box-sizing: border-box;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sage-green);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s;
}

.reviews-dots .dot.active {
    opacity: 1;
}

/* ── 12. CTA Block ─────────────────────────────────────────── */

.cta-block {
    background-color: var(--deep-charcoal);
    color: var(--cream);
    text-align: center;
    border-radius: var(--radius-lg);
    margin: var(--space-lg);
    padding: var(--space-xxl) var(--space-md);
}

.cta-block h2 {
    color: var(--primary-sand, var(--primary-gold));
    margin-bottom: var(--space-sm);
}

.cta-block p {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* ── 13. Utilities ─────────────────────────────────────────── */

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

.text-gold {
    color: var(--primary-gold) !important;
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-intro p {
    font-size: 18px;
    line-height: 1.8;
}

/* ── Core Services — Alternating Layout ────────────────────── */
.service-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: var(--space-xl);
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.service-row.service-subscription .service-image img {
    object-position: 20% 60%;
}

.service-row.service-purchase .service-image img {
    object-position: center;
}

.service-row.service-training .service-image img {
    object-position: 50% 50%;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row:last-child {
    margin-bottom: 0;
}

/* Image Panel */
.service-image {
    flex: 0.8;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

.service-row:hover .service-image img {
    transform: scale(1.08);
}

/* Text Panel — overlaps image edge */
.service-content {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--primary-gold);
    margin-left: -30px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
}

.service-row.reverse .service-content {
    border-left: none;
    border-right: 4px solid var(--primary-gold);
    margin-left: 0;
    margin-right: -30px;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: var(--space-sm);
    color: var(--deep-charcoal);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-content .service-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: #555;
}

.service-features {
    margin-bottom: var(--space-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.service-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-gold);
}

/* Core Service Buttons */
.service-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-brown) 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 3px 12px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    width: fit-content;
}

.service-content .btn::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.45);
    background: linear-gradient(135deg, #ddb68a 0%, var(--dark-brown) 100%);
}

.service-content .btn:hover::after {
    transform: translateX(4px);
}

/* ── Split Section Layout ─────────────────────────────────── */
.split-section {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
    border: none;
    padding: 0;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    height: 100%;
    min-height: auto;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content {
    padding: var(--space-lg);
}

/* ── Service Coverage — Pan India ─────────────────────────── */
#service-coverage {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/compressed/4.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: var(--space-xxl) 0;
}

#service-coverage h2,
#service-coverage p,
#service-coverage li {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

#service-coverage .split-image {
    display: none;
}

#service-coverage .split-section {
    display: block;
    text-align: center;
}

#service-coverage .split-content {
    max-width: 800px;
    margin: 0 auto;
}

#service-coverage .service-features-list {
    display: inline-block;
    text-align: left;
}

#service-coverage .service-features-list li::before {
    color: var(--primary-gold);
}

/* Service Features List */
.service-features-list {
    margin-bottom: 30px;
}

.service-features-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-features-list li::before {
    content: "✓";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-note {
    margin-top: 10px;
    font-weight: 600;
}

/* ── 14. Floating Action Buttons ───────────────────────────── */

.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: var(--alert-orange);
}

/* ============================================================
   15. RESPONSIVE — 1024px (Tablet)
   ============================================================ */

@media (max-width: 1024px) {
    :root {
        --max-width: 960px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero */
    .hero-bg-left {
        height: 55vh;
        transform: translateX(-15%);
        bottom: 0;
    }

    .hero-bg-right {
        height: 65vh;
        transform: translateX(15%);
        bottom: 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    /* Why Choose Us */
    #why-choose-us .grid-4 {
        gap: var(--space-lg);
    }

    /* Fix background-attachment for tablets */
    #why-choose-us,
    #service-coverage {
        background-attachment: scroll;
    }
}

/* ============================================================
   16. RESPONSIVE — 768px (Mobile)
   ============================================================ */

@media (max-width: 768px) {
    :root {
        --max-width: 100%;
    }

    /* Typography */
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .section-title {
        margin-bottom: var(--space-md);
        font-size: 24px;
    }

    /* Navigation */
    header {
        width: 95%;
        top: 10px;
        height: 60px;
        padding: 0 5px;
        border-radius: 30px;
    }

    .nav-links,
    .phone-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Grid Layouts */
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Split Sections */
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column-reverse;
    }

    .split-image {
        height: 250px;
        width: 100%;
    }

    /* Footer */
    footer > .container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer-content > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-map {
        width: 150px;
        height: 150px;
        margin: var(--space-md) 0 0;
        flex-shrink: 0;
    }

    .footer-map iframe {
        height: 100%;
    }

    .footer-bottom {
        font-size: 12px;
    }

    /* Cards */
    .card-feature {
        padding: 24px 16px;
    }

    /* Buttons (Touch-friendly) */
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        min-height: 48px;
    }

    .flex-center {
        flex-direction: column;
        gap: var(--space-sm) !important;
        width: 100%;
    }

    .flex-center .btn {
        width: 100%;
        max-width: 320px;
    }

    /* CTA Block */
    .cta-block {
        margin: var(--space-md);
        padding: var(--space-xl) var(--space-sm);
        border-radius: var(--radius-md);
    }

    .cta-block h2 {
        font-size: 24px;
    }

    .cta-block p {
        font-size: 15px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-md);
    }

    .testimonial-text {
        font-size: 15px;
    }

    .section-intro p {
        font-size: 16px;
    }

    /* ── HOME PAGE ── */
    .hero-section {
        height: auto;
        min-height: unset;
        padding: 80px 0 0 0;
        position: relative;
        overflow: hidden;
        background-color: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-section::before {
        display: none;
    }

    /* Reset ALL base absolute-positioning on both images */
    .hero-bg-left,
    .hero-bg-right {
        position: relative;
        top: auto;
        bottom: auto;
        left: 0;
        right: auto;
        height: auto;
        width: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        color: var(--deep-charcoal);
        order: 1;
        margin-bottom: 0;
    }

    .hero-content h1 {
        color: var(--dark-brown);
        font-size: 28px;
        margin-bottom: var(--space-sm);
    }

    .hero-content p {
        color: var(--deep-charcoal);
        font-size: 16px;
        margin-bottom: var(--space-md);
        font-weight: 500;
    }

    .hero-content p strong {
        color: var(--dark-brown);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        margin-bottom: 0;
    }

    .hero-buttons .btn {
        max-width: 100%;
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Left image: flush left, cropped to content */
    .hero-bg-left {
        order: 2;
        width: 70%;
        aspect-ratio: 3 / 4;
        overflow: hidden;
        margin: -60px 0 0 0;
        padding: 0;
    }

    .hero-bg-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 20% 100%;
        display: block;
        filter: none;
    }

    /* Hide right image on MOBILE ONLY */
    .hero-bg-right {
        display: none;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }

    /* Why Choose Us — parallax workaround for mobile */
    #why-choose-us {
        padding: var(--space-xl) 0;
        background: none;
        position: relative;
        clip-path: inset(0);
    }

    #why-choose-us::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/compressed/4.webp');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

    #why-choose-us .section-title {
        font-size: 28px;
        margin-bottom: var(--space-lg);
    }

    #why-choose-us .grid-4 {
        gap: var(--space-lg);
    }

    #why-choose-us .card-feature h3 {
        font-size: 20px;
    }

    #why-choose-us .card-feature p {
        font-size: 15px;
    }

    /* Core Services — Mobile */
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        min-height: auto;
        margin-bottom: var(--space-lg);
        border-radius: var(--radius-sm);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .service-image {
        width: 100%;
        height: 220px;
    }

    .service-image img {
        height: 100%;
    }

    .service-content {
        padding: var(--space-md);
        margin-left: 0;
        border-left: 3px solid var(--primary-gold);
        box-shadow: none;
    }

    .service-row.reverse .service-content {
        margin-right: 0;
        border-right: none;
        border-left: 3px solid var(--primary-gold);
    }

    .service-content h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .service-content .service-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .service-content p {
        font-size: 14px;
        margin-bottom: var(--space-sm);
    }

    .service-features li {
        font-size: 13px;
    }

    /* Split Sections */
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column-reverse;
    }

    .split-image {
        height: 250px;
        width: 100%;
    }

    /* Service Coverage — parallax workaround for mobile */
    #service-coverage {
        padding: var(--space-xl) 0;
        background: none;
        position: relative;
        clip-path: inset(0);
    }

    #service-coverage::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/compressed/4.webp');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
}

/* ============================================================
   17. RESPONSIVE — 480px (Small Mobile)
   ============================================================ */

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero-section {
        padding: 70px 0 0 0;
        min-height: unset;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 15px;
    }

    /* Why Choose */
    #why-choose-us .section-title {
        font-size: 24px;
    }

    /* CTA */
    .cta-block {
        margin: var(--space-sm);
        padding: var(--space-lg) var(--space-sm);
    }

    .cta-block h2 {
        font-size: 22px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-map {
        width: 120px;
        height: 120px;
    }

    footer {
        padding: var(--space-lg) 0 var(--space-md);
    }

    /* Floating Actions */
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
    }
}

/* ── FAQ Section ────────────────────────────────────────────── */

.faq-section {
    background-color: var(--cream);
    padding: var(--space-xxl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary-gold);
}

.faq-question {
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-brown);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--deep-charcoal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
