/* ==========================================================================
   JHOMPY Construction — Premium Design System
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --color-primary: #E67E22;
    --color-primary-dark: #C56A19;
    --color-primary-light: #f0983f;
    --color-accent: #D6A347;
    --color-dark: #2D2D2D;
    --color-dark-lighter: #3a3a3a;
    --color-gray: #6B6B6B;
    --color-gray-light: #999;
    --color-bg-light: #F8F8F8;
    --color-white: #FFFFFF;
    --color-black: #1a1a1a;
    --color-overlay: rgba(45, 45, 45, 0.85);
    --color-overlay-light: rgba(45, 45, 45, 0.6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E67E22 0%, #C56A19 100%);
    --gradient-dark: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(45,45,45,0.88) 0%, rgba(230,126,34,0.35) 100%);
    --gradient-accent: linear-gradient(135deg, #E67E22 0%, #D6A347 100%);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;

    /* Font Sizes */
    --fs-hero: clamp(2.5rem, 3.5vw, 4rem);
    --fs-h1: clamp(2rem, 4vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 2.75rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
    --fs-h4: 1.125rem;
    --fs-body: 1rem;
    --fs-body-lg: 1.125rem;
    --fs-small: 0.875rem;
    --fs-xs: 0.8125rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 1.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    --section-padding: clamp(4rem, 8vw, 7rem);

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 800px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
    --shadow-primary: 0 8px 30px rgba(230, 126, 34, 0.35);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-extrabold);
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-small);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-bottom: var(--space-sm);
}

.section-header .section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-header h2 {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: var(--fs-body-lg);
}

.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.bg-light { background-color: var(--color-bg-light); }
.bg-dark { background-color: var(--color-dark); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-small);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.45);
}

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

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

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

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

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 40px;
    font-size: var(--fs-body);
}

.btn-sm {
    padding: 10px 24px;
    font-size: var(--fs-xs);
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.navbar-brand .logo {
    height: 90px;
    width: auto;
    transition: var(--transition-base);
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-weight: var(--fw-black);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--color-white);
    transition: color var(--transition-base);
    display: none; /* Logo already contains brand name */
}

.navbar.scrolled .navbar-brand .brand-text {
    color: var(--color-dark);
}

.navbar.scrolled .navbar-brand .logo {
    height: 100px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    font-size: var(--fs-small);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-base);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar.scrolled .nav-link {
    color: var(--color-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--color-primary);
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(0%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--color-dark);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
    padding-left: 30px;
}

.nav-dropdown .dropdown-arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform var(--transition-base);
    font-size: 0.7em;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Nav CTA */
.navbar .nav-cta {
    margin-left: var(--space-sm);
}

.navbar .nav-cta .btn {
    padding: 12px 24px;
    font-size: var(--fs-xs);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    padding: 4px 0;
    z-index: calc(var(--z-sticky) + 10);
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.navbar.scrolled .menu-toggle span {
    background: var(--color-dark);
}

/* When menu is active, always use dark color for X icon */
.menu-toggle.active span {
    background: var(--color-dark);
}

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

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

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

/* Force navbar background when mobile menu is open */
.navbar.menu-open {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.menu-open .navbar-brand .brand-text {
    color: var(--color-dark);
}

.navbar.menu-open .navbar-brand .logo {
    height: 99px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-content {
    max-width: 750px;
    padding-top: 120px;
}

.hero-content h1 {
    font-size: var(--fs-hero);
    font-weight: var(--fw-black);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-content h1 .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-content .hero-subtitle {
    font-size: var(--fs-body-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-weight: var(--fw-black);
    font-size: 2.5rem;
    color: var(--color-primary);
    display: block;
}

.hero-stat .stat-label {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-weight: var(--fw-black);
    font-size: 2.5rem;
    display: block;
    line-height: 1;
}

.experience-badge .label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .section-label {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-small);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.about-content h2 {
    margin-bottom: var(--space-lg);
}

.about-content p {
    font-size: var(--fs-body-lg);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.about-feature .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-feature .feature-text {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
    color: var(--color-dark);
    margin-bottom: 0;
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.service-card .service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

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

.service-card .service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    font-size: var(--fs-small);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
    color: var(--color-primary);
    transition: gap var(--transition-base);
}

.service-card:hover .learn-more {
    gap: 12px;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.why-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.why-card .why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

.why-card .why-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.why-card:hover .why-icon svg {
    color: var(--color-white);
}

.why-card h3 {
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: var(--fs-small);
}

/* ---------- Service Detail Blocks ---------- */
.service-detail {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-base);
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.service-detail-header .service-icon {
    flex-shrink: 0;
}

.service-detail-header h3 {
    margin: 0;
    font-size: var(--fs-h3);
    color: var(--color-dark);
}

.service-detail p {
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

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

/* ---------- Gallery ---------- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.filter-btn {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: var(--color-gray);
    border: 2px solid transparent;
    background: var(--color-bg-light);
    transition: all var(--transition-base);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,45,45,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: var(--fs-h4);
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- Service Areas ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.area-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.area-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.area-item .area-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.area-item span {
    font-weight: var(--fw-semibold);
    color: var(--color-dark);
}

.areas-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.areas-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient-primary);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-body-lg);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-group label {
    display: block;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-md);
    font-size: var(--fs-body);
    color: var(--color-dark);
    background: var(--color-bg-light);
    transition: all var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-error {
    color: #e74c3c;
    font-size: var(--fs-xs);
    margin-top: 4px;
    display: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

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

.contact-info-card .info-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-info-card .info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-card h4 {
    font-size: var(--fs-body);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-lg);
    aspect-ratio: 16 / 9;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.business-hours {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.business-hours h4 {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: var(--fs-small);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li .day {
    font-weight: var(--fw-semibold);
    color: var(--color-dark);
}

.hours-list li .time {
    color: var(--color-gray);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    height: 99px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-weight: var(--fw-black);
    font-size: 1.4rem;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    display: block;
}

.footer-brand p {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 42px;
    height: 42px;
    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: all var(--transition-base);
}

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

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: var(--fs-body);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul li a {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
    background: var(--gradient-dark);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.08);
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb a {
    color: var(--color-primary);
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.45s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(11) { transition-delay: 0.55s; }
.stagger-children .reveal:nth-child(12) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(13) { transition-delay: 0.65s; }

/* ---------- Success Message ---------- */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-2xl);
}

.form-success.show {
    display: block;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: #27ae60;
}

.form-success h3 {
    color: #27ae60;
    margin-bottom: var(--space-sm);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: 0;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: calc(var(--z-sticky) + 5);
    }

    .navbar-nav.active {
        right: 0;
    }

    /* Each li takes full width */
    .navbar-nav li {
        width: 100%;
        list-style: none;
    }

    .navbar-nav .nav-link {
        color: var(--color-dark);
        padding: 16px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: var(--fs-body);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* Remove underline animation on mobile */
    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--color-primary);
    }

    /* Services Dropdown - mobile */
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
        min-width: auto;
        border-radius: 0;
        background: var(--color-bg-light);
        margin: 0;
        padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 0;
        font-size: var(--fs-small);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .dropdown-menu a:hover {
        padding-left: 8px;
        background: none;
    }

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

    /* CTA button */
    .navbar .nav-cta {
        margin: var(--space-lg) 0 0 0;
        width: 100%;
        padding-top: var(--space-sm);
    }

    .navbar .nav-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Mobile overlay — must be below navbar z-index so nav panel stays clickable */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: calc(var(--z-sticky) - 1);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

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

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 400px;
    }

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

    .hero-stats {
        gap: var(--space-xl);
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

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

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

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

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

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-md);
    }

    /* Full-width mobile menu on small screens */
    .navbar-nav {
        width: 100%;
    }

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

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

    .gallery-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: var(--fs-xs);
    }

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