/* 
======================================================================
   BuildHome - Premium Construction Services Website Styling
   Design Style: Bright, Trustworthy, Modern, High-Contrast Light Theme
   Color Theme: Pure White, Soft Cream, Dark Charcoal, Vibrant Orange/Gold
======================================================================
*/

/* 1. Design System Variables & Base Settings */
:root {
    /* Colors */
    --color-primary-dark: #111111;       /* Deep charcoal for headings */
    --color-secondary-dark: #000000;     /* Pure black for footer */
    --color-gold: #f9a000;               /* Vibrant orange/gold */
    --color-gold-hover: #e09000;         /* Hover state orange */
    --color-yellow: #ffb300;             /* Yellow highlights */
    --color-bg-light: #ffffff;           /* Pure white */
    --color-bg-cream: #fffdf0;           /* Soft luxury cream (from reference) */
    --color-bg-grey: #f5f5f5;            /* Light grey */
    --color-text-dark: #333333;          /* Dark body text */
    --color-text-muted: #555555;         /* Secondary text */
    --color-text-light: #ffffff;         /* White text */
    --color-text-light-muted: #bbbbbb;   /* Muted white text */
    --color-border: #e2e2e2;             /* Light borders */
    --color-border-accent: rgba(249, 160, 0, 0.3);
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-out;
    
    /* Spacing & Shadows */
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-gold-glow: 0 0 20px rgba(249, 160, 0, 0.15);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --container-width: 1200px;
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

h1 {
    font-size: clamp(2rem, 4.5vw + 1rem, 3.75rem); /* Mobile: 34px-42px, Desktop: 56px-72px */
    letter-spacing: -0.01em;
}

h2.section-title {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); /* Mobile: 28px-34px, Desktop: 42px-52px */
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
}

h2.section-title span.accent-text {
    color: var(--color-gold);
}

h3 {
    font-size: clamp(1.25rem, 1.2vw + 1rem, 1.6rem);
}

p {
    font-size: clamp(0.938rem, 0.15vw + 0.9rem, 1.063rem);
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}

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

/* General Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.bg-cream {
    background-color: var(--color-bg-cream);
}

.bg-grey {
    background-color: var(--color-bg-grey);
}

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

/* Scroll-Reveal (Intersection Observer) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-text-light);
    box-shadow: var(--shadow-soft);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

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

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

.btn-full {
    width: 100%;
}

/* 3. Reusable Sticky Header (Centered Logo style) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    box-shadow: var(--shadow-soft);
    padding: 2px 0;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-svg {
    max-width: 180px;
    height: auto;
}

/* Menu links under logo */
.desktop-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary-dark);
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* Dropdown Menu */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background: var(--color-bg-light);
    border-top: 3px solid var(--color-gold);
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    list-style: none;
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 100;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-headings);
    font-size: 14px;
    color: var(--color-primary-dark);
    font-weight: 500;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: var(--color-bg-cream);
    color: var(--color-gold);
}

/* Hide desktop CTA on header since reference doesn't have it in header */
.header-actions {
    display: none;
}

/* Hamburger button */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1001;
}

.hamburger-btn .bar {
    width: 22px;
    height: 2px;
    background-color: var(--color-primary-dark);
    border-radius: 1px;
    transition: var(--transition-smooth);
}

.hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-light);
    z-index: 1002;
    padding: 30px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-drawer-btn {
    background: transparent;
    border: none;
    font-size: 30px;
    color: var(--color-primary-dark);
    cursor: pointer;
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary-dark);
    display: block;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--color-gold);
}

.mobile-submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    display: none;
    flex-direction: column;
    gap: 12px;
    border-left: 2px solid var(--color-gold);
}

.mobile-submenu a {
    font-family: var(--font-headings);
    font-size: 15px;
    color: var(--color-text-muted);
    display: block;
}

.mobile-submenu a.active,
.mobile-submenu a:hover {
    color: var(--color-gold);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

/* 4. Hero Section (Matched to Reference Screenshot) */
.hero-section {
    position: relative;
    padding: 140px 0 0px; /* Offset for centered header */
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%); /* Light sky blue background */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Hero Left: House image and overlay text */
.hero-left-container {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Text overlaid on the house image */
.hero-overlay-content {
    position: absolute;
    top: 8%;
    right: 5%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-medium);
    max-width: 85%;
    border-left: 5px solid var(--color-gold);
}

.hero-title-group {
    display: flex;
    flex-direction: column;
}

.hero-title-top {
    font-family: var(--font-headings);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-title-top svg {
    color: #e53935; /* Red pin icon */
    flex-shrink: 0;
}

.hero-title-main {
    font-family: var(--font-headings);
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 900;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 4px 0;
}

.hero-title-sub {
    font-family: var(--font-headings);
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.hero-title-sub span.separator {
    color: #e53935;
    font-weight: 900;
}

/* Hero Right: Appointment Form (Matches Reference orange card) */
.hero-form-card {
    background: var(--color-bg-light);
    border-radius: 4px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
    overflow: hidden;
    width: 100%;
}

.hero-form-header {
    background-color: var(--color-gold);
    color: var(--color-text-light);
    padding: 12px 20px;
    text-align: center;
}

.hero-form-header h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-headings);
}

.hero-form-body {
    padding: 20px;
}

.hero-form-body .form-group {
    margin-bottom: 12px;
}

.hero-form-body label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-primary-dark);
}

.hero-form-body input,
.hero-form-body textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
}

.hero-form-body input:focus,
.hero-form-body textarea:focus {
    border-color: var(--color-gold);
}

.hero-form-body button[type="submit"] {
    width: 100%;
    background-color: var(--color-gold);
    color: var(--color-text-light);
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
    margin-top: 8px;
}

.hero-form-body button[type="submit"]:hover {
    background-color: var(--color-gold-hover);
}

/* Full Width Grey Banner below Hero */
.hero-grey-banner {
    background-color: #6d6e71; /* Dark grey */
    color: var(--color-text-light);
    text-align: center;
    padding: 15px 20px;
    font-family: var(--font-headings);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 5. Services Section (Horizontal layout matching screenshot) */
.services-section-title {
    text-align: center;
    font-size: 28px;
    font-family: var(--font-headings);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

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

.services-grid-horizontal {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Horizontal Service Card */
.service-horizontal-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    display: grid;
    grid-template-columns: 240px 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.service-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.service-horizontal-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-horizontal-content {
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-horizontal-text h3 {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-family: var(--font-headings);
}

.service-horizontal-text p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.service-readmore-btn {
    align-self: flex-end;
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-dark);
    border: 1px solid #ccc;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.service-readmore-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-text-light);
    border-color: var(--color-gold);
}

/* 6. Why Choose BuildHome (Cream background, icons on left) */
.why-choose-title {
    text-align: center;
    font-size: 28px;
    font-family: var(--font-headings);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.why-choose-title span {
    color: var(--color-gold);
}

.why-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-horizontal-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.why-horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-gold-glow);
}

.why-card-icon-wrapper {
    color: var(--color-text-muted);
    flex-shrink: 0;
    margin-top: 4px;
}

.why-card-text-wrapper h3 {
    font-size: 16px;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
}

.why-card-text-wrapper p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 7. How It Works Section */
.how-it-works-title {
    text-align: center;
    font-size: 28px;
    font-family: var(--font-headings);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.how-it-works-title span {
    color: var(--color-gold);
}

.timeline-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    position: relative;
}

.timeline-flex::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 8%;
    width: 84%;
    height: 2px;
    border-top: 2px dashed rgba(194, 167, 118, 0.3);
    z-index: 1;
}

.timeline-flex-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 10px;
}

.timeline-icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
}

.timeline-flex-step:hover .timeline-icon-circle {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.timeline-step-label {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-step-number {
    font-family: var(--font-headings);
    font-size: 44px;
    font-weight: 800;
    color: #e6e6e6;
    line-height: 1;
}

/* Vertical Timeline for Mobile */
.timeline-vertical-list {
    display: none;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 30px;
}

.timeline-vertical-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    border-left: 2px dashed rgba(194, 167, 118, 0.3);
}

.timeline-vertical-step {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

.timeline-vertical-step .timeline-icon-circle {
    position: absolute;
    left: -45px;
    width: 32px;
    height: 32px;
    margin: 0;
}

.timeline-vertical-step .timeline-icon-circle svg {
    width: 16px;
    height: 16px;
}

/* 8. About Us Section (Skyline Background) */
.about-skyline-section {
    position: relative;
    background-image: linear-gradient(rgba(255, 253, 240, 0.9), rgba(255, 253, 240, 0.9)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.about-skyline-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.about-skyline-left-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

.about-skyline-content-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    border-left: 5px solid var(--color-gold);
}

.about-skyline-content-card h2 {
    font-size: 28px;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    font-family: var(--font-headings);
    text-transform: uppercase;
}

/* 9. Contact Us Section */
.contact-title {
    font-size: 28px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-headings);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-circle-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-text-col h4 {
    display: none; /* Keep it clean */
}

.contact-text-col p {
    font-size: 15px;
    margin: 0;
    color: var(--color-text-dark);
}

/* 10. FAQ Accordion (Clean Minimalist Style) */
.faq-accordion-clean {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item-clean {
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.faq-header-clean {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    text-align: left;
    outline: none;
}

.faq-question-clean {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.faq-icon-clean {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.faq-body-clean {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-clean {
    padding: 10px 0 5px 0;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* 11. Reusable Footer (Solid Black) */
.main-footer {
    background-color: var(--color-secondary-dark);
    color: var(--color-text-light);
    padding: 60px 0 20px;
    border-top: none;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-connect-title {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-social-icons a {
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.footer-social-icons a:hover {
    color: var(--color-gold);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links-grid h3 {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-grid ul a {
    color: #999;
    font-size: 13px;
}

.footer-links-grid ul a:hover {
    color: var(--color-gold);
}

.footer-bottom-bar {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer-bottom-bar a {
    color: #666;
}

.footer-bottom-bar a:hover {
    color: var(--color-gold);
}

/* 12. Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    z-index: 999;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.05);
}

.sticky-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    font-family: var(--font-headings);
    font-size: 11px;
    font-weight: 600;
    gap: 4px;
    text-transform: uppercase;
}

.call-item {
    border-right: 1px solid var(--color-border);
}

.whatsapp-item {
    background: #25d366;
    color: white;
}

.book-item {
    background-color: var(--color-gold);
    color: white;
}

/* ======================================================================
   13. Media Queries
====================================================================== */

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-overlay-content {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        margin-top: -30px;
        z-index: 10;
    }

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

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

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

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-container {
        flex-direction: row;
        justify-content: flex-start;
    }

    .timeline-flex {
        display: none;
    }

    .timeline-vertical-list {
        display: flex;
    }

    .service-horizontal-card {
        grid-template-columns: 1fr;
    }

    .service-horizontal-img {
        height: 200px;
    }

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

    body {
        padding-bottom: 60px;
    }

    .mobile-sticky-bar {
        display: flex;
    }
}
