/* ==========================================================================
   Innovative Developments Group - CSS Stylesheet
   ========================================================================== */

/* --- Custom Properties / Design Tokens --- */
:root {
    /* Color Palette */
    --color-primary: #be9238;       /* Warm metallic gold */
    --color-primary-hover: #a57d2d; /* Darker gold for hovers */
    --color-primary-light: #dfc182; /* Lighter gold accent */
    --color-dark: #111111;          /* Deep rich black */
    --color-dark-muted: #1e1e1e;    /* Muted dark charcoal */
    --color-light: #ffffff;         /* Pure white */
    --color-text-dark: #222222;     /* Text color on white background */
    --color-text-light: #ffffff;    /* Text color on dark background */
    --color-text-muted: #cccccc;    /* Muted text color for description */
    --color-border-gold: rgba(190, 146, 56, 0.6);
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Spacing */
    --header-height: 90px;
    --header-shrink-height: 75px;
    --max-width: 1280px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    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);
    background-color: var(--color-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* --- Layout Containers --- */
.header-container,
.hero-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .header-container,
    .hero-container {
        padding: 0 20px;
    }
}

/* ==========================================================================
   Header / Sticky Navbar
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-light);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Shrink header state triggered via JS */
.site-header.scrolled {
    height: var(--header-shrink-height);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

/* Overflowing logo design */
.logo-link {
    position: relative;
    display: block;
    height: 143px; /* 30% larger */
    width: 143px;  /* 30% larger */
    z-index: 1010;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo-link {
    height: 117px; /* 30% larger */
    width: 117px;  /* 30% larger */
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: var(--transition-smooth);
}

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

/* Navigation Menu */
.primary-navigation {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-fast);
}

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

/* Active Nav Indicator (matching design with gold bar) */
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

/* Sliding hover line for non-active nav links */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: var(--transition-smooth);
}

.nav-link:not(.active):hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Navbar CTA button */
.btn-nav-cta {
    background-color: var(--color-primary);
    color: var(--color-light);
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 13px 26px;
    border-radius: 3px;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(190, 146, 56, 0.2);
}

.btn-nav-cta:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(190, 146, 56, 0.3);
}

.btn-nav-cta:active {
    transform: translateY(0);
}

/* Mobile Nav Toggle Icon */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1020;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05); /* Slight zoom for load effect */
    animation: zoomOutBg 1.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Gradient overlay to guarantee text readability while keeping house visible */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.9) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Subtitle style: CRAFTED WITH INNOVATION. */
.hero-subtitle {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/* Title style: BUILT TO PERFECTION. */
.hero-title {
    font-family: var(--font-headings);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-light);
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title .accent-text {
    color: var(--color-primary);
}

/* Description text */
.hero-description {
    font-family: var(--font-body);
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
    opacity: 0;
    transform: translateY(25px);
}

/* Actions Section */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
}

/* Base button inside hero */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 13.5px;
    height: 54px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Primary Hero button */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 0 32px;
    box-shadow: 0 4px 20px rgba(190, 146, 56, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(190, 146, 56, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-arrow {
    margin-left: 10px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Secondary phone CTA button */
.btn-secondary {
    background-color: rgba(17, 17, 17, 0.7);
    color: var(--color-light);
    border: 1px solid var(--color-primary);
    padding: 0 32px;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(190, 146, 56, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-phone-icon {
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-phone-icon {
    transform: rotate(15deg) scale(1.1);
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes zoomOutBg {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

/* Animation utilities triggered on load */
.animate-on-load.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-subtitle.animate-on-load.reveal-active {
    transition-delay: 0.2s;
}

.hero-title.animate-on-load.reveal-active {
    transition-delay: 0.4s;
}

.hero-description.animate-on-load.reveal-active {
    transition-delay: 0.6s;
}

.hero-actions.animate-on-load.reveal-active {
    transition-delay: 0.8s;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: #ffffff;
    position: relative;
    padding: 0;
    color: var(--color-text-dark);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: stretch;
}

.about-image-column {
    grid-column: 1 / 7;
    position: relative;
    min-height: 650px;
}

.about-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 112%; /* Overlaps middle column */
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    overflow: hidden;
    z-index: 2;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #be9238 0%, #9e7525 100%);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.experience-badge:hover {
    transform: scale(1.08) rotate(5deg);
}

.badge-content {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: var(--font-headings);
}

.badge-number {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.badge-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 4px;
}

.badge-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    opacity: 0.85;
}

.about-content-column {
    grid-column: 7 / 13;
    display: flex;
    align-items: center;
    padding: 110px 40px 110px 90px;
    background-color: #ffffff;
    z-index: 1;
}

.about-content-wrapper {
    max-width: 580px;
}

.about-subtitle {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: inline-block;
}

.about-title {
    font-family: var(--font-headings);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-divider {
    width: 45px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 30px;
}

.about-body p {
    font-family: var(--font-body);
    font-size: 15.5px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-body p.highlight-paragraph {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.7;
}

.trust-row {
    display: flex;
    gap: 25px;
    margin-top: 45px;
    border-top: 1px solid #f0f0f0;
    padding-top: 35px;
}

.trust-col {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    position: relative;
}

.trust-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e2e2e2;
}

.trust-icon-wrapper {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text {
    font-family: var(--font-headings);
    font-size: 11px;
    font-weight: 750;
    color: var(--color-dark);
    line-height: 1.35;
    letter-spacing: 0.03em;
}

/* Scroll Animation Styles */
.animate-on-scroll-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll-up.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-on-scroll-fade {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll-fade.reveal-active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Staggered delays for about section elements */
.about-content-wrapper .animate-on-scroll-up:nth-child(1) { transition-delay: 0.1s; }
.about-content-wrapper .animate-on-scroll-up:nth-child(2) { transition-delay: 0.2s; }
.about-content-wrapper .animate-on-scroll-up:nth-child(3) { transition-delay: 0.3s; }
.about-content-wrapper .animate-on-scroll-up:nth-child(4) { transition-delay: 0.4s; }
.about-content-wrapper .animate-on-scroll-up:nth-child(5) { transition-delay: 0.5s; }

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background-color: #121212; /* Dark/Charcoal background matching design */
    background-image: radial-gradient(circle at 50% 50%, #1c1c1c 0%, #0c0c0c 100%);
    padding: 100px 0;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: inline-block;
}

.services-title {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-light);
    letter-spacing: -0.01em;
}

.services-divider {
    width: 45px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 20px auto 0 auto;
}

/* Services Carousel Layout */
.services-carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0; /* Room for card shadow on hover */
}

.services-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.service-card {
    flex: 0 0 calc((100% - (2 * 24px)) / 3); /* Exactly 3 cards visible on desktop */
    background-color: #fbfbfb;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s ease;
}

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

/* Overlapping Badge Icon */
.card-badge-icon {
    position: absolute;
    top: 194px; /* Centered on the 220px image boundary */
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #121212;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .card-badge-icon {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateX(-50%) scale(1.08);
}

.card-body {
    padding: 45px 25px 35px 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 0 0 3px 3px;
}

.card-title {
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.card-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Slide Show Control Buttons */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(18, 18, 18, 0.9);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.carousel-control:hover:not(:disabled) {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(190, 146, 56, 0.4);
}

.carousel-control:active:not(:disabled) {
    transform: translateY(-50%) scale(0.98);
}

.carousel-control.prev-btn {
    left: -26px;
}

.carousel-control.next-btn {
    right: -26px;
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(190, 146, 56, 0.3);
    color: rgba(190, 146, 56, 0.3);
}

/* ==========================================================================
   Projects Section
   ========================================================================== */
.projects-section {
    background-color: #111111;
    padding: 0;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.projects-grid {
    display: grid;
    grid-template-columns: 25% 15% 15% 15% 15% 15%;
    min-height: 500px;
    align-items: stretch;
}

.projects-text-panel {
    background-color: #111111;
    background-image: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #0c0c0c 100%);
    border-right: 1px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

.projects-subtitle {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.projects-subtitle .accent-text {
    color: var(--color-primary);
}

.projects-title {
    font-family: var(--font-headings);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.projects-divider {
    width: 45px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 20px 0 35px 0;
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-headings);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 14px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(190, 146, 56, 0.35);
}

.btn-outline-primary:active {
    transform: translateY(-1px);
}

/* Project Card Layout */
.project-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-right: 1px solid rgba(190, 146, 56, 0.2);
}

.project-card:last-child {
    border-right: none;
}

.project-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    transition: background-color 0.4s ease;
    z-index: 2;
}

.project-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 15px;
    text-align: center;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(190, 146, 56, 0.3);
    z-index: 5;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.project-caption span {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 750;
    color: #ffffff;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

/* Project Hover Animations */
.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-card:hover .project-overlay {
    background-color: rgba(190, 146, 56, 0.15); /* Warm golden filter */
}

.project-card:hover .project-caption {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background-color: #fbfbfb;
    padding: 45px 0;
    color: var(--color-dark);
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 5;
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.stat-col {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-col:hover {
    transform: translateY(-3px);
}

.stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e2e2e2;
}

.stat-icon-wrapper {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stat-col:hover .stat-icon-wrapper {
    transform: scale(1.1);
}

.stat-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-num-container {
    display: flex;
    align-items: baseline;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-headings);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-left: 2px;
}

.stat-label {
    font-family: var(--font-headings);
    font-size: 11px;
    font-weight: 800; /* Bold black matching design */
    color: var(--color-dark);
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.stat-local-text {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 800; /* Bold black matching design */
    color: var(--color-dark);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Staggered animation delays for stats section */
.stats-grid .stat-col:nth-child(1) { transition-delay: 0.1s; }
.stats-grid .stat-col:nth-child(2) { transition-delay: 0.2s; }
.stats-grid .stat-col:nth-child(3) { transition-delay: 0.3s; }
.stats-grid .stat-col:nth-child(4) { transition-delay: 0.4s; }

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: #121212;
    background-image: radial-gradient(circle at 50% 50%, #1c1c1c 0%, #0c0c0c 100%);
    padding: 100px 0;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(190, 146, 56, 0.2);
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-family: var(--font-headings);
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    text-transform: uppercase;
}

.testimonials-title .accent-text {
    color: var(--color-primary);
}

.header-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.25);
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}

.testimonial-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - (2 * 24px)) / 3); /* Exactly 3 cards visible on desktop */
    background-color: rgba(25, 25, 25, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(190, 146, 56, 0.15);
}

.card-stars {
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.author-location {
    font-family: var(--font-body);
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-control {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-control:hover:not(:disabled) {
    color: var(--color-primary);
    transform: scale(1.2);
}

.testimonial-control:active:not(:disabled) {
    transform: scale(0.95);
}

.testimonial-control:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dots .dot:hover {
    border-color: var(--color-primary);
}

.testimonial-dots .dot.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.15);
}

/* ==========================================================================
   Contact / Free Quote Section
   ========================================================================== */
.contact-section {
    display: flex;
    min-height: 600px;
    background-color: #111111;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Left Panel: Info Panel (Gold background) */
.contact-info-panel {
    flex: 3.8;
    background: radial-gradient(circle at 30% 30%, #be9238 0%, #a57d2d 100%);
    padding: 90px 40px 90px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    position: relative;
    z-index: 5;
    margin-right: -10%; /* Negative margin to make columns overlap cleanly */
}

.info-content-wrapper {
    max-width: 420px;
    width: 100%;
}

.contact-info-title {
    font-family: var(--font-headings);
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.contact-info-divider {
    width: 45px;
    height: 3px;
    background-color: #111111;
    margin: 20px 0 35px 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(17, 17, 17, 0.95);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    background-color: #ffffff;
    color: #a57d2d;
}

.contact-detail-text {
    font-family: var(--font-headings);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
}

/* Middle Panel: Image Panel (Dusk Villa Photograph) */
.contact-image-panel {
    flex: 2.7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
    position: relative;
    z-index: 3;
    margin-right: -10%; /* Overlaps form panel */
    margin-left: -5%;
}

/* Right Panel: Form Panel (Dark Charcoal) */
.contact-form-panel {
    flex: 4.5;
    background-color: #111111;
    background-image: radial-gradient(circle at 70% 30%, #1c1c1c 0%, #0c0c0c 100%);
    padding: 90px 80px 90px 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Diagonal white line divider */
.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    clip-path: polygon(23.5% 0, 24% 0, 0.5% 100%, 0% 100%);
    pointer-events: none;
    z-index: 10;
}

.form-content-wrapper {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
}

.contact-form-title {
    font-family: var(--font-headings);
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: -0.01em;
}

.quote-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #ffffff;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Custom select drop-down styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #777777; /* Placeholder color when default is selected */
}

/* Change select text color when value is selected */
.form-group select.value-selected {
    color: #ffffff;
}

.form-group.select-group {
    position: relative;
}

/* Custom chevron arrow on dropdown select */
.form-group.select-group::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-color: transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
    transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.form-group.select-group:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: var(--color-primary);
}

.form-group option {
    background-color: #121212;
    color: #ffffff;
}

.btn-submit-quote {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0 32px;
    border: none;
    box-shadow: 0 4px 15px rgba(190, 146, 56, 0.25);
    width: auto;
}

.btn-submit-quote:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(190, 146, 56, 0.4);
}

.btn-submit-quote:active {
    transform: translateY(0);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: #ffffff;
    padding: 80px 0 30px 0;
    color: #555555;
    border-top: 3px solid var(--color-primary);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1.2fr 1.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-logo-link {
    display: inline-block;
    height: 140px; /* 30% + 20% larger */
    width: 140px;  /* 30% + 20% larger */
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555555;
}

/* Social Icon Badges */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(190, 146, 56, 0.3);
}

.social-link:active {
    transform: translateY(-1px);
}

/* Footer Section Headers */
.footer-title {
    font-family: var(--font-headings);
    font-size: 14.5px;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer-title-line {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 25px;
}

/* Links & Menus */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #555555;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-primary);
    padding-left: 18px;
}

.footer-nav a:hover::before {
    left: 0;
    opacity: 1;
}

/* Contact Details */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #555555;
    line-height: 1.5;
}

.footer-contact-info svg {
    color: var(--color-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-info .email-text {
    word-break: break-all;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 30px;
    position: relative;
}

.copyright-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #777777;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: #777777;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Scroll To Top Button (Floating Premium) */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(17, 17, 17, 0.95);
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, visibility 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    backdrop-filter: blur(5px);
}

.scroll-top-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(190, 146, 56, 0.4);
}

.scroll-top-btn:active {
    transform: translateY(-1px);
}

/* Staggered delays for footer section columns */
.footer-grid .footer-col:nth-child(1) { transition-delay: 0.1s; }
.footer-grid .footer-col:nth-child(2) { transition-delay: 0.2s; }
.footer-grid .footer-col:nth-child(3) { transition-delay: 0.3s; }
.footer-grid .footer-col:nth-child(4) { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Styles (Media Queries)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    /* Responsive navbar */
    .mobile-nav-toggle {
        display: block;
    }
    
    .primary-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-light);
        z-index: 1015;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .primary-navigation.nav-open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .nav-link.active::after {
        left: 0;
        transform: none;
        width: 40px;
        bottom: -5px;
    }
    
    .nav-link::before {
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
        width: 40px;
        bottom: -5px;
    }
    
    .nav-link:not(.active):hover::before {
        transform: scaleX(1);
    }

    .header-cta {
        display: none; /* Hide header CTA on mobile or move to menu */
    }

    /* Active Mobile Nav Cross Icon */
    .mobile-nav-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .mobile-nav-toggle.active .hamburger::before {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .hamburger::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 3.5rem;
    }

    /* About Responsive */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-column {
        grid-column: 1 / 2;
        min-height: 450px;
    }

    .about-image-wrapper {
        width: 100%;
        clip-path: none;
    }

    .about-content-column {
        grid-column: 1 / 2;
        padding: 60px 20px 80px 20px;
    }

    .about-content-wrapper {
        max-width: 100%;
    }

    /* Services Tablet Responsive */
    .services-section {
        padding: 80px 0;
    }

    .service-card {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 cards visible */
    }

    .carousel-control.prev-btn {
        left: -15px;
    }

    .carousel-control.next-btn {
        right: -15px;
    }

    /* Projects Tablet Responsive */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-text-panel {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        padding: 60px 40px;
        border-right: none;
        border-bottom: 1px solid var(--color-primary);
    }

    .projects-divider {
        margin: 15px auto 25px auto;
    }

    .project-card {
        min-height: 400px;
    }

    /* Stats Tablet Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-col:nth-child(2n)::after {
        display: none;
    }

    /* Testimonial Tablet Responsive */
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 cards visible */
    }

    /* Contact Section Tablet */
    .contact-section {
        flex-direction: column;
        min-height: auto;
    }

    .contact-info-panel {
        clip-path: none;
        width: 100%;
        margin-right: 0;
        padding: 70px 40px;
        justify-content: center;
    }

    .info-content-wrapper {
        max-width: 580px;
    }

    .contact-image-panel {
        display: none; /* Hide middle photo on mobile/tablet to save space */
    }

    .contact-form-panel {
        clip-path: none;
        width: 100%;
        margin-left: 0;
        padding: 70px 40px;
    }

    .contact-form-panel::before {
        display: none; /* Hide white diagonal line */
    }

    .form-content-wrapper {
        max-width: 580px;
        margin-left: 0;
    }

    /* Footer Tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: var(--header-height);
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.9) 60%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }
    
    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15.5px;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }

    /* About Section 768px Responsive */
    .about-image-column {
        min-height: 380px;
    }

    .experience-badge {
        width: 130px;
        height: 130px;
        bottom: 25px;
        left: 25px;
    }

    .badge-number {
        font-size: 32px;
    }

    .badge-title {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .badge-subtitle {
        font-size: 8px;
    }

    .trust-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .trust-col {
        width: 100%;
    }

    .trust-col:not(:last-child)::after {
        display: none;
    }

    /* Services Mobile Responsive */
    .services-title {
        font-size: 1.8rem;
    }

    .services-container {
        padding: 0 20px;
    }

    .service-card {
        flex: 0 0 100%; /* 1 card visible */
    }

    .carousel-control.prev-btn {
        left: -10px;
    }

    .carousel-control.next-btn {
        right: -10px;
    }

    /* Projects Mobile Responsive */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: 320px;
        border-right: none;
        border-bottom: 1px solid rgba(190, 146, 56, 0.2);
    }

    .project-card:last-child {
        border-bottom: none;
    }

    .projects-title {
        font-size: 1.8rem;
    }

    /* Stats Mobile Responsive */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-col::after {
        display: none !important;
    }

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

    /* Testimonials Mobile Responsive */
    .testimonials-title {
        font-size: 1.8rem;
    }

    .header-line {
        width: 30px;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 100%; /* 1 card visible */
        min-height: auto;
    }

    /* Contact Section Mobile */
    .contact-info-panel,
    .contact-form-panel {
        padding: 50px 20px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.6rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .btn-submit-quote {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 40px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-link {
        height: 117px; /* 30% larger */
        width: 117px;  /* 30% larger */
    }

    .site-header.scrolled .logo-link {
        height: 104px; /* 30% larger */
        width: 104px;  /* 30% larger */
    }

    /* Services Small Mobile Responsive */
    .services-title {
        font-size: 1.5rem;
    }
    .carousel-control {
        width: 44px;
        height: 44px;
    }

    /* Projects Small Mobile */
    .projects-title {
        font-size: 1.5rem;
    }

    .projects-text-panel {
        padding: 50px 20px;
    }

    /* Stats Small Mobile */
    .stat-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .stat-num-container {
        justify-content: center;
    }

    /* Testimonials Small Mobile */
    .testimonials-title {
        font-size: 1.5rem;
    }

    .header-line {
        display: none;
    }

    /* Contact Small Mobile */
    .contact-info-title,
    .contact-form-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .contact-info-divider {
        margin: 15px auto 25px auto;
    }

    .contact-detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    /* Footer Small Mobile */
    .site-footer {
        padding: 60px 0 30px 0;
    }

    .footer-container {
        padding: 0 20px;
    }
}
