:root {
            --gold: #c5a059;
            --dark: #111111;
            --grey: #2d2d2d;
            --white: #ffffff;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark);
            color: var(--white);
            line-height: 1.6;
        }

        /* --- Header Main --- */
        .navbar {
            height: 90px;
            display: flex;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(17, 17, 17, 0.98);
            border-bottom: 1px solid rgba(197, 160, 89, 0.2);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .nav-container-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* --- Logo --- */
        .logo-box { z-index: 1002; }
        .logo-img-main { height: 65px; width: auto; object-fit: contain; }

        /* --- Desktop Menu --- */
        .desktop-nav-links { display: flex; list-style: none; gap: 5px; }
        .desktop-nav-links li a {
            color: var(--white);
            text-decoration: none;
            padding: 10px 15px;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
            opacity: 0.8;
        }
        .desktop-nav-links li a:hover { color: var(--gold); opacity: 1; }

        /* --- Actions (Search & Button) --- */
        .header-actions { display: flex; align-items: center; gap: 15px; }

        /* Search Bar Style (Used for both Desktop & Mobile) */
        .header-search-bar {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(197, 160, 89, 0.3);
            border-radius: 30px;
            padding: 5px 15px;
            transition: var(--transition);
        }

        .header-search-input {
            background: transparent;
            border: none;
            color: var(--white);
            padding: 5px;
            outline: none;
            width: 100px;
            font-size: 12px;
        }

        .inquire-btn-gold {
            color: var(--gold);
            border: 1px solid var(--gold);
            padding: 10px 22px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .inquire-btn-gold:hover { background: var(--gold); color: var(--dark); }

        /* --- Mobile Burger Icon --- */
        .mobile-toggle-icon {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 2000;
        }
        .mobile-toggle-icon span {
            width: 28px;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }

        /* --- Mobile Navigation Overlay --- */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #111;
            z-index: 1500;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
            padding: 20px;
        }

        .mobile-nav-overlay.open { transform: translateY(0); }

        /* Mobile Close Button */
        .mobile-close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 30px;
            color: var(--gold);
            cursor: pointer;
            transition: var(--transition);
        }

        /* Mobile Search Bar Positioning */
        .mobile-search-wrapper {
            margin-bottom: 40px;
            width: 100%;
            max-width: 300px;
        }
        .mobile-search-wrapper .header-search-bar { width: 100%; padding: 10px 20px; }
        .mobile-search-wrapper .header-search-input { width: 100%; font-size: 14px; }

        .mobile-nav-list { list-style: none; text-align: center; }
        .mobile-nav-list li { margin: 15px 0; }
        .mobile-nav-list li a {
            color: var(--white);
            text-decoration: none;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: var(--transition);
        }
        .mobile-nav-list li a:hover { color: var(--gold); }

        /* --- RESPONSIVE FIXES --- */
        @media (max-width: 1024px) {
            .desktop-nav-links, .header-actions { display: none; }
            .mobile-toggle-icon { display: flex; }
            .navbar { height: 80px; }
        }

        /* Burger Animation to X */
        .mobile-toggle-icon.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
        .mobile-toggle-icon.is-active span:nth-child(2) { opacity: 0; }
        .mobile-toggle-icon.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
/* Hero Section */
.hero {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            position: relative;
            background: #000;
            overflow: hidden;
        }

        /* Background Image with Ken Burns Effect */
        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('asset/Images/elevations-6.jpeg') center/cover no-repeat;
            animation: kenBurns 20s infinite alternate;
            z-index: 1;
        }

        @keyframes kenBurns {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* Premium Gradient Overlay */
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(75deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
            z-index: 2;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            position: relative;
            z-index: 10;
        }

        /* --- Content Styling --- */
        .hero-content {
            max-width: 850px;
        }

        .hero-content h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.8rem, 7vw, 5rem);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        .gold-text {
            color: var(--gold);
            display: block; /* Forces "Inspires" to its own line for impact */
            font-weight: 700;
        }

        .hero-content p {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 45px;
            max-width: 550px;
            font-weight: 300;
            letter-spacing: 0.5px;
            border-left: 2px solid var(--gold);
            padding-left: 20px;
        }

        /* --- Buttons --- */
        .hero-btns {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 18px 40px;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .btn-gold {
            background: var(--gold);
            color: #000;
        }

        .btn-gold:hover {
            background: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .btn-outline {
            border: 1px solid rgba(197, 160, 89, 0.5);
            color: var(--gold);
        }

        .btn-outline:hover {
            border-color: var(--gold);
            background: rgba(197, 160, 89, 0.05);
            transform: translateY(-5px);
        }

        /* --- Floating Social Bar (From Reference) --- */
        .social-bar {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 100;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }

        .social-icon:hover {
            background: var(--gold);
            color: #000;
            transform: scale(1.1);
        }

        /* --- Responsive Logic --- */
        @media (max-width: 992px) {
            .hero-overlay {
                background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
            }
            .container {
                text-align: center;
            }
            .hero-content {
                margin: 0 auto;
            }
            .hero-content p {
                margin: 0 auto 40px;
                border-left: none;
                border-top: 2px solid var(--gold);
                padding: 20px 0 0 0;
            }
            .hero-btns {
                justify-content: center;
            }
            .social-bar {
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-btns {
                flex-direction: column;
                width: 100%;
            }
            .btn {
                width: 100%;
            }
            .social-bar {
                display: none; /* Hide on very small screens to avoid clutter */
            }
        }
/* Grid & Cards */
:root {
    --gold: #c5a059;
    --dark-bg: #121212;
    --grey-card: #1c1c1c;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services { 
    padding: 30px 0; 
    background-color: var(--dark-bg);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Grid: 3 cards per row */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: var(--grey-card);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
    border-radius: 4px; /* Subtle rounding for a modern look */
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-img-wrapper {
    overflow: hidden;
    height: 300px; /* Recommended Image Size: 800x1000px (Portrait/Tall) or 800x600 (Standard) */
}

.card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.card:hover .card-img {
    transform: scale(1.1);
}

.card-info { 
    padding: 30px; 
    border-top: 2px solid var(--gold);
}

.card-info h3 { 
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 5px; 
    color: var(--gold); 
}

.client-prof {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.sq-ft {
    font-weight: bold;
    color: var(--gold);
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links, .cta-btn { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
}

/* Floating Contact Bar Container */
.floating-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Individual Icon Styling */
.contact-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #d4af37; /* Gold border to match your theme */
}

.contact-icon img {
    width: 25px;
    height: 25px;
}

/* Hover Effects */
.contact-icon:hover {
    transform: scale(1.1) translateX(-5px);
    background: #d4af37; /* Turns gold on hover */
}

.contact-icon:hover img {
    filter: brightness(0) invert(1); /* Turns icon white on hover */
}

/* Pulse Animation for WhatsApp */
.whatsapp {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        top: auto;
        bottom: 20px; /* Moves to bottom right on mobile for easier tapping */
        transform: none;
        flex-direction: row; /* Horizontal on mobile */
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
}
/* --- GLOBAL FOOTER RESET --- */
.main-footer {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 80px 0 20px;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* --- LOGO & BRAND --- */
.footer-logo-img {
    height: auto; /* Footer Logo Upload Size: 250px x 60px */
    width: auto;
    margin-bottom: 20px;
}

.brand-box p {
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.8;
}

/* --- HEADINGS --- */
.footer-heading {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* --- REMOVE BLUE LINKS & BULLETS --- */
.clean-links {
    list-style: none;
    padding: 0;
}

.clean-links li {
    margin-bottom: 12px;
}

.clean-links a {
    color: #bcbcbc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.clean-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* --- CONTACT DETAILS --- */
.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #bcbcbc;
    font-size: 14px;
}

.contact-detail i {
    color: #d4af37;
    width: 20px;
}

/* --- SIDE CONTACT BAR (FIXED) --- */
.side-contact-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.side-icon {
    width: 45px;
    height: 45px;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(5px); /* Premium Glass Effect */
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    font-size: 20px;
    transition: 0.4s ease;
}

.side-icon:hover {
    background: #d4af37;
    color: #121212;
    transform: scale(1.1);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 12px;
    color: #666;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .contact-detail { justify-content: center; }
    .side-contact-bar {
        top: auto;
        bottom: 20px;
        right: 10px;
        flex-direction: row;
    }
}
/* --- Premium Social Media Motion Styling --- */
.social-links-container {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.social-icon-box {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05); /* Very subtle dark base */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Faint gold border */
    border-radius: 8px; /* Sophisticated slightly rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy motion */
    overflow: hidden;
}

/* The Animated Background Slide */
.social-icon-box::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d4af37; /* Gold Fill */
    transition: all 0.4s ease;
    z-index: -1;
}

/* Hover States */
.social-icon-box:hover {
    color: #111; /* Icon turns dark when background turns gold */
    transform: translateY(-5px); /* Moves up on hover */
    border-color: #d4af37;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); /* Gold glow */
}

.social-icon-box:hover::before {
    top: 0; /* Background slides up */
}

/* Responsive Handling */
@media (max-width: 600px) {
    .social-links-container {
        justify-content: center; /* Centers icons on mobile */
        gap: 20px;
    }
    
    .social-icon-box {
        width: 45px; /* Slightly larger for easier tapping on mobile */
        height: 45px;
    }
}

/* Reset for standard FontAwesome colors if they bleed in */
.social-icon-box i {
    transition: transform 0.4s ease;
}

.social-icon-box:hover i {
    transform: scale(1.2); /* Icon grows slightly */
}

:root {
            --wa-bg-dark: #1a1a1a;
            --wa-bg-card: #242424;
            --wa-gold-light: #d4af37;
            --wa-gold-dark: #aa882e;
            --wa-text-main: #e0e0e0;
            --wa-text-muted: #a0a0a0;
            --wa-accent-gradient: linear-gradient(135deg, #d4af37 0%, #8a6d1d 100%);
        }

        /* RESET & BASE STYLES */
        .wa-policy-wrapper {
            background-color: var(--wa-bg-dark);
            color: var(--wa-text-main);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.8;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
        }

        .wa-container {
            max-width: 900px;
            width: 100%;
        }

        /* HEADER SECTION */
        .wa-header {
            text-align: center;
            margin-bottom: 50px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding-bottom: 30px;
        }

        .wa-header h1 {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            background: var(--wa-accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .wa-last-update {
            font-size: 0.9rem;
            color: var(--wa-gold-light);
            font-style: italic;
        }

        /* CONTENT CARDS */
        .wa-card {
            background: var(--wa-bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
        }

        .wa-section {
            margin-bottom: 40px;
        }

        .wa-section:last-child {
            margin-bottom: 0;
        }

        .wa-section h2 {
            color: var(--wa-gold-light);
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .wa-section h2::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 20px;
            background: var(--wa-accent-gradient);
            margin-right: 12px;
            border-radius: 2px;
        }

        .wa-list {
            list-style: none;
            padding-left: 0;
        }

        .wa-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: var(--wa-text-muted);
        }

        .wa-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--wa-gold-light);
        }

        /* CONTACT SECTION */
        .wa-contact-box {
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid var(--wa-gold-dark);
            border-radius: 8px;
            padding: 25px;
            margin-top: 20px;
        }

        .wa-contact-item {
            display: block;
            margin-bottom: 8px;
            text-decoration: none;
            color: var(--wa-text-main);
            transition: color 0.3s;
        }

        .wa-contact-item:hover {
            color: var(--wa-gold-light);
        }

        .wa-contact-label {
            color: var(--wa-gold-light);
            font-weight: bold;
            margin-right: 10px;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .wa-header h1 { font-size: 1.8rem; }
            .wa-card { padding: 25px; }
            .wa-section h2 { font-size: 1.2rem; }
            .wa-policy-wrapper { padding: 30px 15px; }
        }