/* ==========================================================================
   HARSHA MARBLE POLISHING SERVICE - MASTER STYLESHEET
   ========================================================================== */

/* --- ROOT VARIABLES & COLOR PALETTE --- */
:root {
    --color-primary: #055C75;         /* Deep Teal / Navy Teal */
    --color-primary-dark: #034255;
    --color-primary-light: #0d7999;
    --color-accent: #E58319;          /* Gold / Bright Orange */
    --color-accent-hover: #c96e0f;
    --color-accent-light: #fff3e6;
    
    --color-text-main: #1E293B;       /* Slate Dark Gray */
    --color-text-muted: #64748B;      /* Slate Light Gray */
    --color-bg-light: #F8FAFC;        /* Light Gray Background */
    --color-white: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(5, 92, 117, 0.08);
    --shadow-md: 0 6px 20px rgba(5, 92, 117, 0.12);
    --shadow-lg: 0 12px 30px rgba(5, 92, 117, 0.18);
    --shadow-gold: 0 8px 24px rgba(229, 131, 25, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: #FAFAFB;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-bottom: 70px; /* Space for mobile bottom bar */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .container {
        padding: 0 20px;
    }
}

.section-padding {
    padding: 35px 0; /* Tight seamless flow between sections */
}

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

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

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.text-shadow-subtle {
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

/* --- PAGE BANNER FOR SEPARATE PAGES --- */
.page-banner {
    padding: 30px 0 20px;
    border-bottom: 1px solid #E2E8F0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F7F9 100%);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* --- BUTTON SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.btn-quote-nav {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 9px 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

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

.btn-hero-quote {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 10px 8px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
}

.btn-hero-quote:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.arrow-circle {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-hero-quote:hover .arrow-circle {
    transform: translateX(3px);
}

.btn-call-now {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-call-now:hover {
    background: #f0f8fa;
    transform: scale(1.04);
}

.btn-form-submit {
    width: 100%;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 13px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    margin-top: 10px;
}

.btn-form-submit:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* --- BRAND LOGO STYLING --- */
.brand-logo-img-wrapper {
    display: inline-flex;
    align-items: center;
}

.header-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (min-width: 768px) {
    .header-logo-img {
        height: 48px;
    }
}

.mobile-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.modal-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 12px;
}

/* --- HEADER / NAVIGATION --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    transition: var(--transition-normal);
}

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

.desktop-nav {
    display: none;
    align-items: center;
    gap: 30px;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-main);
    position: relative;
    padding: 6px 0;
}

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

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

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

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--color-white);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: var(--transition-normal);
}

.mobile-nav-overlay.open .mobile-nav-content {
    transform: translateX(0);
}

.close-mobile-nav {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    margin-bottom: 15px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 10px;
}

.mobile-link.active {
    color: var(--color-accent);
}

/* --- HERO SECTION WITH ATTRACTIVE BACKGROUND VIDEO & DIRECT MIX TEXT VISIBILITY --- */
.hero-section {
    position: relative;
    padding: 35px 0 30px;
    background: #0f172a url('images/hero-bg-polishing.png?v=2') center center / cover no-repeat;
    overflow: hidden;
    color: #0F172A;
    min-height: 520px;
    display: flex;
    align-items: center;
}

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

/* Background Video Styling - 100% Full Video Clarity */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Zero Shadow/Haze Video Overlay - 100% Raw Video Clarity */
.hero-video-overlay {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 25px 0 20px;
    }
    .hero-video-overlay {
        display: none;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 50px 0 45px;
    }
    .hero-container {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 35px;
    }
}

/* Clean Hero Content - No white box/patch card background, text floats directly over video */
.hero-content {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 4px;
        border-radius: 0;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    color: #0A2540;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 1px 4px rgba(255, 255, 255, 0.9);
}

.hero-title-navy {
    color: #0A2540; /* Dark Navy Blue */
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 1px 4px rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.65rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.4rem;
    }
}

.text-highlight {
    color: #E58319; /* Vibrant Orange */
    display: inline-block;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 1px 4px rgba(255, 255, 255, 0.9);
}

/* Green Subtitle & Underline Line */
.hero-subtitle-wrapper {
    margin-bottom: 16px;
}

.hero-subtitle-green {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #386B24; /* Rich Green */
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95);
}

.subtitle-line-green {
    width: 100%;
    max-width: 280px;
    height: 3px;
    background: linear-gradient(90deg, #487B34 0%, #E58319 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.02rem;
    color: #0F172A;
    max-width: 520px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 800; /* Thick Bold Font */
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95), 0 1px 3px rgba(255, 255, 255, 0.9);
}

/* Green Circular Badges Feature List */
.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #0F172A;
    background: transparent;
    padding: 2px 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    width: fit-content;
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95), 0 1px 3px rgba(255, 255, 255, 0.9);
}

.green-icon-badge {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: #487B34; /* Green circle icon badge */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(72, 123, 52, 0.25);
}

.feature-text {
    color: #0F172A;
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-hero-quote {
    background: #0A2540; /* Dark Navy Blue */
    color: #FFFFFF;
    padding: 8px 8px 8px 24px;
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-quote:hover {
    background: #051627;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
}

.btn-hero-quote .arrow-circle {
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    color: #0A2540;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* --- HERO SLIDER CAROUSEL SYSTEM --- */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.hero-slider-card {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 12px 35px rgba(10, 77, 92, 0.15);
    border: 5px solid var(--color-white);
    background: #0B252C;
}

@media (max-width: 767px) {
    .hero-slider-card {
        border-width: 3px;
        border-radius: var(--radius-md);
    }
}

.hero-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.hero-slide-item {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #071B20;
    user-select: none;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-slide-item:hover .hero-slide-img {
    transform: scale(1.05);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 16px 30px 16px;
    color: #FFFFFF;
    transition: background 0.3s ease;
    z-index: 2;
}

@media (max-width: 767px) {
    .hero-slide-overlay {
        padding: 10px 12px 28px 12px;
    }
}

.hero-slide-tag {
    align-self: flex-start;
    background: rgba(230, 126, 34, 0.95);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 576px) {
    .hero-slide-tag {
        font-size: 0.6rem;
        padding: 2px 7px;
        margin-bottom: 3px;
    }
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
    line-height: 1.25;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 576px) {
    .hero-slide-title {
        font-size: 0.92rem;
        margin-bottom: 2px;
    }
}

.zoom-hint-badge {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

@media (max-width: 576px) {
    .zoom-hint-badge {
        font-size: 0.68rem;
    }
}

.hero-slide-item:hover .zoom-hint-badge {
    opacity: 1;
    color: var(--color-accent);
}

/* SIDE-TO-SIDE NAVIGATION BUTTONS */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
    border: 2px solid rgba(10, 77, 92, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-slider-prev {
    left: -18px;
}

.hero-slider-next {
    right: -18px;
}

@media (max-width: 576px) {
    .hero-slider-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .hero-slider-prev {
        left: 4px;
    }
    .hero-slider-next {
        right: 4px;
    }
}

.hero-slider-nav:hover {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.hero-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* HERO SLIDER CONTROLS (DOTS & COUNTER) */
.hero-slider-controls {
    position: absolute;
    bottom: 8px;
    left: 14px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--color-accent);
    box-shadow: 0 0 8px rgba(230, 126, 34, 0.6);
}

.hero-slide-counter {
    background: rgba(10, 40, 50, 0.75);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

/* HIDE SLIDE COUNTER (1/10) ON MOBILE VIEW AS REQUESTED */
@media (max-width: 767px) {
    .hero-slide-counter {
        display: none !important;
    }
}

/* ANIMATED HERO CARD EFFECTS */
.animated-hero-card {
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.shine-sweep-overlay {
    display: none;
}

@keyframes shineSweep {
    0% { left: -100%; }
    30%, 100% { left: 180%; }
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.animated-hero-card:hover .hero-img {
    transform: scale(1.04);
}

.experience-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 3px solid var(--color-accent);
    z-index: 4;
}

/* MOBILE REPOSITIONING FOR EXPERIENCE BADGE TO PREVENT OVERLAPPING BOTTOM TEXT */
@media (max-width: 767px) {
    .experience-badge {
        top: 8px;
        right: 8px;
        bottom: auto;
        padding: 4px 8px;
        border-radius: 6px;
    }
}

@media (min-width: 768px) {
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        border-left-width: 4px;
    }
}

.animated-badge {
    animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.04); box-shadow: var(--shadow-gold); }
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

@media (min-width: 768px) {
    .badge-num {
        font-size: 1.6rem;
    }
}

.badge-txt {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* --- SECTION HEADERS --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.badge-line {
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.accent-star {
    color: var(--color-accent);
    font-size: 0.85rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1.2px;
}

.section-main-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .section-main-title {
        font-size: 2.2rem;
    }
}

/* --- SERVICES SECTION --- */
.services-section {
    padding-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-normal);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(5, 92, 117, 0.15);
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-teal { background: var(--color-primary); }
.icon-orange { background: var(--color-accent); }

.service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 6px;
}

.card-accent-line {
    width: 30px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.service-card:hover .service-btn {
    color: var(--color-accent);
}

/* --- WHY CHOOSE US WITH ALL 3 SIDE DIVIDERS --- */
.why-choose-box {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 25px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .why-choose-box {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        padding: 25px 20px;
        border-radius: var(--radius-lg);
        align-items: center;
    }
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.icon-circle-teal {
    background: #EBF7FA;
    color: var(--color-primary);
    border: 2px solid rgba(5, 92, 117, 0.2);
    box-shadow: 0 4px 10px rgba(5, 92, 117, 0.1);
}

.icon-circle-blue {
    background: #F0F9FF;
    color: #0284C7;
    border: 2px solid rgba(2, 132, 199, 0.25);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.icon-circle-orange {
    background: #FFF7ED;
    color: var(--color-accent);
    border: 2px solid rgba(229, 131, 25, 0.25);
    box-shadow: 0 4px 12px rgba(229, 131, 25, 0.15);
}

.why-item:hover .why-icon {
    transform: scale(1.1);
}

.why-item h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-main);
    max-width: 160px;
}

.why-divider {
    display: none;
}

@media (min-width: 768px) {
    .why-divider {
        display: block;
        width: 1px;
        background: #CBD5E1;
        height: 60px;
        align-self: center;
    }
}

/* --- ABOUT SECTION & INTERACTIVE ZOOM PHOTO --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 35px;
    }
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .about-img-frame {
        border-radius: var(--radius-lg);
    }
}

.interactive-pop-frame {
    cursor: pointer;
}

.zoom-hover-img {
    transition: transform 0.6s ease;
}

.interactive-pop-frame:hover .zoom-hover-img {
    transform: scale(1.06);
}

.click-zoom-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(5, 92, 117, 0.85);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.interactive-pop-frame:hover .click-zoom-badge {
    background: var(--color-accent);
}

.about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-img {
        height: 350px;
    }
}

.sub-heading-orange {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.heading-underline {
    width: 35px;
    height: 3px;
    background: var(--color-accent);
    margin: 4px 0 10px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.1rem;
    }
}

.about-text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.9rem;
}

.highlight-point i {
    color: var(--color-accent);
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-learn-more:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* --- STATS SECTION --- */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 12px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number-wrapper {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .stat-number-wrapper {
        font-size: 2.8rem;
    }
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* --- GALLERY SECTION (15 Separate Boxes) --- */
.gallery-section {
    background: #FAFAFC;
}

.gallery-main-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .gallery-main-title {
        font-size: 2rem;
    }
}

.gallery-main-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 22px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .gallery-main-title {
        font-size: 2.1rem;
    }
    .gallery-subtitle {
        font-size: 1.15rem;
    }
}

/* --- GALLERY GRID & REFERENCE CARD STYLING --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Tall Spacious Reference Card Box */
.gallery-card-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background: #0B132B;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.gallery-card-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    border-color: rgba(229, 131, 25, 0.5);
}

.gallery-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card-box:hover .gallery-card-bg img {
    transform: scale(1.08);
}

/* Dark Gradient Scrim Overlay for Crystal Clear Text Visibility */
.gallery-card-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top, 
        rgba(8, 14, 30, 0.96) 0%, 
        rgba(8, 14, 30, 0.82) 40%, 
        rgba(8, 14, 30, 0.35) 70%, 
        transparent 100%
    );
    z-index: 2;
    transition: background 0.35s ease;
}

.gallery-card-box:hover .gallery-card-scrim {
    background: linear-gradient(
        to top, 
        rgba(8, 14, 30, 0.98) 0%, 
        rgba(8, 14, 30, 0.88) 45%, 
        rgba(8, 14, 30, 0.45) 75%, 
        transparent 100%
    );
}

/* Card Bottom Content Container */
.gallery-card-content {
    position: relative;
    z-index: 3;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

/* Category Tag & Accent Line */
.gallery-card-tag-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.gallery-card-tag {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: #CBD5E1;
    letter-spacing: 0.2px;
}

.tag-accent-line {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #E58319, #2563EB);
    border-radius: 2px;
}

/* Bold Main Title */
.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Sub-heading / Description Snippet */
.gallery-card-desc {
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.4;
    margin: 2px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Blue "+ Read More" Pill Button */
.gallery-card-action {
    margin-top: 4px;
}

.btn-read-more-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1D4ED8;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.4);
    transition: all 0.25s ease;
}

.btn-read-more-pill:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.55);
}

.btn-read-more-pill i {
    font-size: 0.75rem;
}

@media (max-width: 576px) {
    .gallery-card-box {
        aspect-ratio: 3 / 4.2;
        min-height: 350px;
        border-radius: 14px;
    }
    .gallery-card-content {
        padding: 16px 14px 14px;
    }
    .gallery-card-title {
        font-size: 1.1rem;
    }
    .gallery-card-desc {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
    }
    .btn-read-more-pill {
        font-size: 0.78rem;
        padding: 7px 15px;
    }
}

/* --- PROJECT DETAIL MODAL STYLES --- */
.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.88);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.project-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.project-modal-card {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalPopIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalPopIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.project-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(15, 23, 42, 0.6);
    color: #FFFFFF;
    border: none;
    font-size: 1.6rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.project-modal-close:hover {
    background: rgba(15, 23, 42, 0.9);
}

.project-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .project-modal-grid {
        grid-template-columns: 1.1fr 1.2fr;
    }
}

.project-modal-img-col {
    position: relative;
    width: 100%;
    min-height: 280px;
    max-height: 420px;
    background: #0F172A;
}

.project-modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-modal-img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(29, 78, 216, 0.9);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.project-modal-info-col {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.detail-subtitle-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin: 0;
}

.detail-desc {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.detail-features-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 4px;
}

.detail-features-box h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.accent-star {
    color: #E58319;
}

.detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-features-list li {
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.detail-features-list li i {
    color: #16A34A;
    font-size: 0.8rem;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

@media (min-width: 576px) {
    .detail-actions {
        flex-direction: row;
    }
}

.btn-quote-modal-action {
    background: #25D366;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
    flex: 1;
}

.btn-quote-modal-action:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-call-modal-action {
    background: #0F172A;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    flex: 1;
}

.btn-call-modal-action:hover {
    background: #1E293B;
    transform: translateY(-2px);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 92, 117, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.overlay-content {
    color: var(--color-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.zoom-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
}

.overlay-content span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

/* --- CTA BANNER --- */
.cta-banner-section {
    margin-top: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
}

.cta-banner {
    background: var(--color-primary);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(5, 92, 117, 0.2);
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner {
        flex-direction: row;
        border-radius: var(--radius-lg);
        padding: 25px 35px;
        text-align: left;
    }
}

.cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}

@media (min-width: 768px) {
    .cta-left {
        flex-direction: row;
        gap: 20px;
    }
}

.phone-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-white);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .phone-icon-circle {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}

.cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .cta-text h3 {
        font-size: 1.4rem;
    }
}

.cta-text p {
    font-size: 0.88rem;
    opacity: 0.9;
}

/* --- CONTACT & FORM --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin: 8px 0 12px;
}

@media (min-width: 768px) {
    .contact-heading {
        font-size: 2.1rem;
    }
}

.contact-desc {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

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

.info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F0F7FA;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

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

.info-details span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.info-link, .info-details strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.info-link:hover {
    color: var(--color-accent);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 22px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #E2E8F0;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 25px;
        border-radius: var(--radius-lg);
    }
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 8px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1.5px solid #CBD5E1;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(5, 92, 117, 0.1);
}

/* --- FOOTER & SOCIAL LINKS --- */
.site-footer {
    background: #022935;
    color: var(--color-white);
    padding: 45px 0 25px;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .site-footer {
        padding-bottom: 95px;
    }
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 1.4fr 1.1fr 1.1fr;
        text-align: left;
        gap: 32px;
        align-items: start;
    }
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    max-width: 380px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.footer-contact-info a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.footer-contact-info i {
    color: var(--color-accent);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.owner-name {
    font-weight: 700;
    font-size: 0.98rem !important;
    color: #FFFFFF !important;
}

/* Icon-Only Circular Social Buttons */
.footer-social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-btn {
    background: #0A66C2;
}

.social-icon-btn i {
    font-size: 1.25rem;
}

.social-icon-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
    color: #FFFFFF;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-copy {
        text-align: center;
    }
}

/* --- STICKY MOBILE BOTTOM NAVIGATION BAR --- */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62px;
    background: var(--color-white);
    border-top: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
}

@media (min-width: 992px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    flex: 1;
}

.bottom-nav-item i {
    font-size: 1.15rem;
}

.bottom-nav-item.active {
    color: #487B34;
}

.call-action-circle {
    position: relative;
    top: -14px;
}

.orange-phone-bubble {
    width: 52px;
    height: 52px;
    background: #487B34;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(72, 123, 52, 0.4);
    border: 3px solid var(--color-white);
    font-size: 1.35rem;
}

/* --- MODAL POPUP: QUOTE FORM --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

@media (min-width: 576px) {
    .modal-card {
        border-radius: var(--radius-lg);
        padding: 30px;
    }
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
}

.modal-header p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 16px;
}

.lightbox-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.2rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: var(--color-accent);
}

.lightbox-prev { left: -50px; }
.lightbox-next { right: -50px; }

@media (max-width: 768px) {
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

.lightbox-caption {
    margin-top: 12px;
    color: var(--color-white);
    display: flex;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

/* --- SCROLL REVEAL ANIMATIONS & KEYFRAMES --- */
.reveal-up, .reveal-left, .reveal-right, .reveal-zoom, .reveal-rubber {
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-zoom { transform: scale(0.85); }
.reveal-rubber { transform: scale(0.9); }

.reveal-active {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}

/* RubberBand Animation */
@keyframes rubberBand {
    0% { transform: scale3d(1, 1, 1); }
    30% { transform: scale3d(1.15, 0.85, 1); }
    40% { transform: scale3d(0.85, 1.15, 1); }
    50% { transform: scale3d(1.08, 0.92, 1); }
    65% { transform: scale3d(0.97, 1.03, 1); }
    75% { transform: scale3d(1.02, 0.98, 1); }
    100% { transform: scale3d(1, 1, 1); }
}

.animate-rubber {
    animation: rubberBand 1s ease-in-out;
}

/* --- ROTATING & ANIMATED HEADLINES (SHINEMARBLEPOLISH REPLICATION) --- */
.animated-headline-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.rotating-text-box {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    padding: 2px 10px;
    background: linear-gradient(135deg, rgba(5, 92, 117, 0.1), rgba(229, 131, 25, 0.12));
    border-radius: var(--radius-sm);
    border-bottom: 2px solid var(--color-accent);
}

.rotating-text {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 800;
    white-space: nowrap;
    animation: rotateTextFade 6s infinite;
}

@keyframes rotateTextFade {
    0%, 28% { opacity: 1; transform: translateY(0); }
    33%, 61% { opacity: 0; transform: translateY(-25px); }
    66%, 95% { opacity: 1; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- SECTION SHADOW WATERMARK TEXT --- */
.section-header-relative {
    position: relative;
    z-index: 2;
}

.heading-shadow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(5, 92, 117, 0.05);
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    user-select: none;
    z-index: -1;
}

@media (max-width: 768px) {
    .heading-shadow-text {
        font-size: 2rem;
    }
}

/* --- ANIMATED MORPHING BLOB VISUAL (ABOUT SECTION) --- */
.animated-blob-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-shape {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphBlob 8s ease-in-out infinite alternate;
    box-shadow: 0 15px 35px rgba(5, 92, 117, 0.25);
    border: 4px solid var(--color-white);
    position: relative;
    overflow: hidden;
}

@keyframes morphBlob {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.blob-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

/* --- COMPARISON MATRIX TABLE ("Harsha Marble Polish vs Others") --- */
.comparison-section {
    background: linear-gradient(180deg, #FAFAFB 0%, #F1F5F9 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid #E2E8F0;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }
}

.comparison-col-header {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.col-header-features {
    background: #F1F5F9;
    color: var(--color-text-main);
}

.col-header-harsha {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.col-header-others {
    background: #E2E8F0;
    color: var(--color-text-muted);
}

.comparison-row {
    display: contents;
}

.comparison-cell {
    padding: 12px 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #E2E8F0;
}

.cell-feature {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.cell-harsha {
    background: rgba(5, 92, 117, 0.04);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 4px;
    gap: 8px;
}

.cell-harsha i {
    color: #10B981;
    font-size: 1.1rem;
}

.cell-others {
    color: var(--color-text-muted);
    gap: 8px;
}

.cell-others i {
    color: #EF4444;
    font-size: 1.1rem;
}

/* --- AMBIENT VIDEO SECTION --- */
.video-feature-section {
    position: relative;
    padding: 70px 0;
    background: #032029;
    color: var(--color-white);
    overflow: hidden;
}

.video-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(3, 32, 41, 0.7) 0%, rgba(3, 32, 41, 0.95) 100%);
    z-index: 1;
}

.video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.35;
}

.video-content-box {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-content-box h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.video-content-box .hero-description {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(241, 245, 249, 0.92);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-size: 1.08rem;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .video-content-box h2 {
        font-size: 1.6rem;
    }
    .video-content-box .hero-description {
        font-size: 0.95rem;
    }
}

/* --- FLOATING WHATSAPP (LEFT) & CALL (RIGHT) PULSE BUTTONS --- */
.floating-actions-container {
    position: fixed;
    bottom: 88px;
    left: 16px;
    right: 16px;
    z-index: 2500;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.floating-actions-container .floating-btn {
    pointer-events: auto;
}

@media (min-width: 992px) {
    .floating-actions-container {
        bottom: 25px;
        left: 25px;
        right: 25px;
    }
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-fast);
}

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

.btn-whatsapp-pulse {
    background: #25D366;
}

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

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulseRing 2s infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

