html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

/* --- Elite Designer Polish: Film Grain Overlay (Subtle Texture) --- */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAs9u6kAAAABnRSTlMAAAAAAABupgeRAAAANUlEQVR42u3PMQEAAADCoPVPbA8fWICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAA6p0BBAA5O34AAAAASUVORK5CYII=');
    opacity: 0.08;
    /* Reduced for smoothness */
    pointer-events: none;
    z-index: 9999;
}


:root {
    --primary-color: #d4af37;
    --gold-bright: #f9e29c;
    --gold-dark: #9e905b;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e29c 50%, #9e905b 100%);
    --bg-dark: #000000;
    --accent-color: #111111;
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Inter', sans-serif;
}


.gold-text {
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #ffffff 50%,
            var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
    position: relative;
    animation: professional-shimmer 8s linear infinite;
    /* Much slower and subtle */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes professional-shimmer {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: -100% center;
    }
}

@keyframes heavy-glam {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes float-heavy {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }

    50% {
        transform: translateY(-10px) rotateX(5deg);
    }
}


.gold-bg {
    background: var(--primary-color);
    color: #000;
}

.gold-border {
    border: 1px solid var(--primary-color);
}

/* --- Advanced Glow Effects --- */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    /* Neutral subtle light */
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: rotate-glow 20s infinite linear;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg) translate(50px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translate(50px) rotate(-360deg);
    }
}

.icon-container-3d {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.real-3d-icon {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.floating-icon {
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.magnetic-btn {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}


.glass-pane {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.glass-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/diamond-pattern.png');
    background-size: 200px;
    opacity: 0.03;
    pointer-events: none;
}

.glass-pane:hover {
    border-color: var(--gold-bright);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}


/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.diamond-loader {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    transform: rotate(45deg);
    animation: pulse-diamond 1.5s infinite ease-in-out;
}

@keyframes pulse-diamond {
    0% {
        transform: rotate(45deg) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: rotate(45deg) scale(0.8);
        opacity: 0.5;
    }
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 15px;
    left: 5%;
    width: 90%;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition-slow);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

nav.scrolled {
    top: 10px;
    width: 96%;
    left: 2%;
    padding: 0.8rem 5%;
    background: rgba(0, 0, 0, 0.9);
}


nav.scrolled .logo img {
    height: 60px;
}

.text-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    transition: var(--transition-fast);
}

.text-logo span.gold-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-logo .builders-accent {
    color: var(--primary-color);
    font-size: 0.75rem;
    letter-spacing: 6px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
}

.text-logo:hover {
    transform: scale(1.05);
}

/* --- Premium Logo Styling --- */
.premium-logo {
    height: 70px;
    /* Reduced from 100px */
    width: auto;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

nav.scrolled .premium-logo {
    height: 50px;
    /* Reduced from 80px */
}

.premium-logo:hover {
    transform: scale(1.08) translateY(2px);
}

.premium-logo-footer {
    height: 120px;
    /* Reduced from 180px */
    width: auto;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.premium-logo-footer:hover {
    transform: scale(1.05);
}

.logo img {
    height: 75px;
    transition: var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--gold-gradient);
    color: #000 !important;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}


/* --- Page Headers for sub-pages --- */
.page-header {
    height: 75vh;
    width: 100%;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.98));
    /* Darkened core for maximum contrast */
    z-index: 1;
}

/* Cinematic Zoom Effect Utility */
.ken-burns-bg {
    position: relative;
    overflow: hidden;
}

.ken-burns-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    animation: breatheZoom 25s infinite alternate ease-in-out;
}

.ken-burns-bg .section-content,
.ken-burns-bg .container,
.ken-burns-bg h1,
.ken-burns-bg h2 {
    position: relative;
    z-index: 2;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-image: inherit;
    background-attachment: fixed;
    z-index: 0;
    animation: breatheZoom 25s infinite alternate ease-in-out;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 0 5px 35px rgba(0, 0, 0, 1), 0 2px 10px rgba(0, 0, 0, 1);
}

.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.section-content {
    max-width: 1400px;
    width: 100%;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    background: linear-gradient(90deg,
            #ffffff 0%,
            #d4af37 50%,
            #ffffff 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: professional-shimmer 12s linear infinite !important;
    /* Very slow shimmer */
    display: inline-block !important;
    font-weight: 700;
    letter-spacing: -0.5px;
    filter: none !important;
    text-shadow: none !important;
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 2.5rem;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: heavy-glam 5s linear infinite, float-heavy 8s ease-in-out infinite;
}


/* Animated text effects handled by .gold-text and moving-text animation */

@keyframes text-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- Hero Section Slider --- */
.hero {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker on the left to protect the new top-left text position */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 45%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-text-box {
    position: absolute;
    top: 25%;
    /* Restored from inline style */
    left: 5%;
    text-align: left;
    z-index: 2;
    max-width: 80vw;
}

.gold-text-hero {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
    color: var(--gold-bright);
}

.gold-text-meta {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 6px;
    font-family: var(--font-accent);
    display: block;
    margin-bottom: 1rem;
    background: var(--gold-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: heavy-glam 4s linear infinite;
}

.section-title-heavy {
    margin-top: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1;
    animation: heavy-glam 3s linear infinite, float-heavy 6s ease-in-out infinite !important;
}

.service-title-heavy {
    font-size: 1.8rem !important;
    margin-bottom: 1.2rem !important;
    font-weight: 800 !important;
    animation: heavy-glam 4s linear infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800 !important;
    animation: professional-shimmer 10s linear infinite !important;
}

.hero-btn-box {
    position: absolute;
    bottom: 15%;
    right: 5%;
    z-index: 2;
}

.hero-text-box h1 {
    font-weight: 900;
    letter-spacing: -3px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 1), 0 0 100px rgba(212, 175, 55, 0.2);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-text-box h1 span.gold-text {
    display: inline-block;
    animation: heavy-glam 2.5s linear infinite, float-heavy 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: breatheZoom 10s infinite alternate ease-in-out;
}

@keyframes breatheZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes scroll-down {
    0% {
        top: 8px;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}


/* Luxury Diamond Dust */
.diamond-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    background-image:
        radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 15% 15%;
    opacity: 0.15;
    animation: floating-dust 20s infinite linear;
}

@keyframes marquee-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.luxury-marquee-text {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: #fff;
    opacity: 0.1;
    margin-right: 6rem;
    text-transform: uppercase;
    letter-spacing: 12px;
    font-weight: 900;
    transition: 0.5s;
}

.luxury-marquee-text.secondary {
    opacity: 0.2;
    color: var(--primary-color);
}

.marquee-section:hover .luxury-marquee-text {
    opacity: 0.4;
    letter-spacing: 15px;
}

.marquee-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, #000 100%);
    pointer-events: none;
    z-index: 5;
}



/* --- Advanced Diamond Grid Stats --- */
.stats-grid-section {
    perspective: 2000px;
}

.blueprint-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 1;
}

.diamond-stats-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    align-items: center;
}

.stat-cube {
    position: relative;
    padding: 4rem 2rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: 0.8s var(--transition-slow);
    transform-style: preserve-3d;
}

.stat-cube.featured {
    transform: scale(1.15) translateY(-30px);
    border-color: var(--primary-color);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
}

.cube-inner {
    text-align: center;
    position: relative;
}

.cube-line {
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    margin: 2rem auto;
    position: relative;
    transition: 0.6s;
}

.stat-cube:hover {
    transform: rotateY(15deg) translateZ(50px) translateY(-10px);
    background: rgba(20, 20, 20, 1);
    border-color: var(--primary-color);
}

.stat-cube:hover .cube-line {
    width: 100px;
    box-shadow: 0 0 20px var(--primary-color);
}

.stat-cube p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .diamond-stats-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cube.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .diamond-stats-layout {
        grid-template-columns: 1fr;
    }
}


.counter {
    font-size: 5rem;
    color: var(--primary-color);
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: stat-pulse 2s infinite ease-in-out;
}

@keyframes stat-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
}

/* --- Glass Cards --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 5rem;
    border-radius: 30px;
    max-width: 900px;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 4rem 3rem;
    border-radius: 4px;
    /* Precision sharp edges for elite look */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: 0.6s;
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
    inset: 15px;
    border-color: rgba(212, 175, 55, 0.2);
}


/* --- Portfolio --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    height: 550px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-slow);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 175, 55, 0);
    z-index: 3;
    transition: 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    pointer-events: none;
}

.portfolio-item:hover::before {
    border-color: rgba(212, 175, 55, 0.5);
    inset: 30px;
}


.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* --- FAQ --- */
.faq-container {
    max-width: 900px;
    margin: 4rem auto;
}

.faq-item {
    background: var(--glass-bg);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    color: white;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    color: var(--text-dim);
    padding: 0 2rem;
}

/* --- Contact --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-color);
    border: none;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* --- Modal --- */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 50px;
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    max-width: 1200px;
    width: 100%;
    padding: 3rem;
    position: relative;
    border-radius: 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.project-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.phase-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
}

/* --- Service Details --- */
.service-detail-section {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 5rem;
    border-bottom: 1px solid var(--glass-border);
}

.service-detail-section:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* --- Responsive & Multi-Screen Support --- */

/* --- 1. Ultra Wide & Big LED Screens (1600px+) --- */
@media (min-width: 1600px) {
    .section-content {
        max-width: 1600px;
    }

    html {
        font-size: 18px;
    }
}

/* --- 2. Laptops & Large Desktops --- */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- 3. Tablets & Small Laptops --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .service-detail-section {
        gap: 3rem;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Mobile Devices --- */
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .premium-logo {
        height: 70px !important;
    }

    nav.scrolled .premium-logo {
        height: 60px !important;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s ease;
        backdrop-filter: blur(25px);
        z-index: 1001;
        border-left: 1px solid var(--primary-color);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block !important;
        cursor: pointer;
        z-index: 1002;
    }

    .burger div {
        width: 25px;
        height: 2px;
        background: var(--primary-color);
        margin: 5px;
        transition: 0.3s;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    nav .cta-button {
        display: none;
    }

    section {
        padding: 80px 5%;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 2rem;
    }

    .service-detail-section {
        flex-direction: column !important;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-phases {
        grid-template-columns: 1fr;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

.burger {
    display: none;
}

/* Custom Cursor */
.cursor {
    width: 25px;
    height: 25px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border 0.3s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.cursor-follower {
    display: none;
    /* Removed follower for significant lag reduction */
}


/* Removed complex word animations for high performance */
.dynamic-word {
    display: inline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* --- Professional Footer System --- */
.professional-footer {
    background: #000;
    padding: 120px 10% 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.professional-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.brand-mission {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 320px;
}

.footer-heading {
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left !important;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    opacity: 0.6;
}

.footer-link:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 8px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-item span {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.professional-footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.professional-footer .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Official Social Brand Colors */
.social-links a[aria-label="Facebook"]:hover {
    background: #1877F2;
    color: #fff;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
    border-color: #1877F2;
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.5);
    border-color: transparent;
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: #0077b5;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.5);
    border-color: #0077b5;
}

.social-links a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    border-color: #25D366;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-bar {
    background: var(--gold-gradient);
    padding: 1.2rem;
    margin-bottom: 4rem;
    position: relative;
    transform: translateY(-50%);
    width: clamp(300px, 60%, 800px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    /* Rounded pill shape */
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Shimmer animation for luxury feel */
.footer-contact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-bar 4s infinite linear;
    z-index: 1;
}

@keyframes shimmer-bar {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.contact-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.bar-label {
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.bar-email {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-accent);
    transition: 0.3s;
}

.bar-email:hover {
    letter-spacing: 1px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.legal-links span {
    color: var(--primary-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .professional-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .professional-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-heading {
        margin-bottom: 1.5rem;
    }

    .bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* --- Floating Action Button --- */
.floating-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    background: var(--gold-gradient);
    color: #000 !important;
    padding: 1.2rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 1.5rem;
}

.floating-cta:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
}

/* --- Corporate Partners Section --- */
.partners-section {
    perspective: 1000px;
}

.partners-container {
    width: 100%;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.partners-wrapper {
    display: flex;
    width: max-content;
    gap: 3rem;
}

.horizontal-scroll-forward {
    animation: scroll-partners-right 80s linear infinite;
}

.horizontal-scroll-reverse {
    animation: scroll-partners-left 80s linear infinite;
}

@keyframes scroll-partners-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scroll-partners-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 3rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 300px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Dual animation: Horizontal is parent, Vertical is child */
    animation: partner-float 5s infinite alternate ease-in-out;
}

.partner-card:nth-child(even) {
    animation-delay: -2.5s;
}

@keyframes partner-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.partner-card i {
    font-size: 2.2rem;
    transition: 0.4s;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-card span {
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.partner-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    cursor: crosshair;
    transform: scale(1.1) translateY(-10px) !important;
}

.partners-wrapper:hover {
    animation-play-state: paused;
}

.partner-card:hover i {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 0 15px var(--primary-color));
}

@media (max-width: 768px) {
    .partner-card {
        padding: 1rem 2rem;
    }
}

/* --- Value Bar Grid View & Premium Hover --- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    transition: var(--transition-slow);
}

.value-item {
    cursor: default;
}

.value-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold-bright) !important;
    background: rgba(212, 175, 55, 0.08) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.1);
}

.value-item:hover div {
    background: var(--gold-gradient) !important;
    border-color: #fff !important;
    transform: rotate(45deg) scale(1.1) !important;
}

.value-item:hover div i {
    -webkit-text-fill-color: #000 !important;
}

@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .value-bar {
        padding: 80px 5% !important;
    }
}