:root {
    --color-bg: #050505;
    /* Deep Black */
    --color-bg-light: #111111;
    /* Dark Charcoal */
    --color-primary: #d4af37;
    /* Metallic Gold Base */
    --color-text: #f0f0f0;
    --color-text-muted: #aaa;
    --color-white: #ffffff;
    --color-black: #000000;

    --gradient-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gradient-gold-text: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gradient-dark: linear-gradient(145deg, #151515, #0a0a0a);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Soft Roundness for everything by default if needed, but managing specifics is better */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.03), transparent 25%);
}

/* --- Dynamic Background --- */
.animated-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    filter: blur(50px);
    opacity: 0.7;
    animation: float 15s infinite ease-in-out alternate;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.35), rgba(0, 0, 0, 0));
    filter: blur(40px);
}

.animated-bg-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    animation-duration: 20s;
}

.shape-2 {
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(170, 119, 28, 0.4) 0%, transparent 70%);
    animation-duration: 22s;
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation-duration: 18s;
    animation-delay: -10s;
}

.shape-4 {
    bottom: 30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation-duration: 15s;
    animation-delay: -2s;
}

.shape-5 {
    top: 10%;
    right: 30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation-duration: 25s;
    animation-delay: -15s;
}

.shape-6 {
    bottom: -15%;
    left: 40%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.2) 0%, transparent 70%);
    animation-duration: 28s;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(200px, 100px) rotate(45deg) scale(1.1);
    }

    50% {
        transform: translate(100px, 300px) rotate(90deg) scale(0.9);
    }

    75% {
        transform: translate(-100px, 150px) rotate(135deg) scale(1.05);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-gold-gradient {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.text-gold {
    color: var(--color-primary);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #aa771c, #d4af37);
    z-index: -1;
    transition: opacity 0.4s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #050505 !important;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    opacity: 1 !important;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

/* Animations */
.fade-up,
.fade-right,
.fade-left {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-up {
    transform: translateY(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.fade-left {
    transform: translateX(30px);
}

.fade-up.visible,
.fade-right.visible,
.fade-left.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-sub {
    color: #fff;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-left: 0.8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0.8rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
}

.nav-link:not(.btn-gold)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:not(.btn-gold):hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Highlighted Nav Item */
.nav-link.nav-highlight {
    background: transparent;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: border-blink 2s infinite alternate;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link.nav-highlight:hover {
    background: rgba(212, 175, 55, 0.05);
    /* Very subtle hover effect only */
    transform: translateY(-1px);
}

@keyframes border-blink {
    from {
        border-color: rgba(212, 175, 55, 0.2);
    }

    to {
        border-color: rgba(212, 175, 55, 1);
    }
}

.badge-new {
    background: #ff0000;
    color: #fff;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-3px);
    }

    60% {
        transform: translateY(-1.5px);
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.95) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 6rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
    color: #e0e0e0;
}

/* Stats Section */
.stats {
    background: rgba(255, 255, 255, 0.02);
    padding: 5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    align-items: start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.stat-number,
.stat-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    min-height: 3rem;
    /* Enforce min-height to align items with different text lengths */
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    font-size: 2.2rem;
    /* Slightly smaller for text-heavy stats to balance visual weight */
}

.stat-list {
    text-align: left;
    display: inline-block;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.stat-list li {
    margin-bottom: 0.2rem;
}

.stat-list li::before {
    content: '•';
    color: var(--color-primary);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: var(--color-white);
}

/* --- Features / "Why Choose Us" Section --- */
.features {
    padding: 8rem 0;
    position: relative;
    /* Extra subtle glow behind features */
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05), transparent 60%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(212, 175, 55, 0.05);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: #1a1a1a;
}

.feature-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
}

.image-wrapper img {
    width: 100%;
    filter: grayscale(20%) contrast(110%);
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #000;
    border: 2px solid var(--color-primary);
    padding: 1.5rem 2rem;
    text-align: center;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.section-tag {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.role-title {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 2rem;
    font-weight: 400;
    border-left: 3px solid var(--color-primary);
    padding-left: 1rem;
}

.section-text {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
}

.highlight {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient-gold);
    color: var(--color-black);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Projects Section */
.projects {
    padding: 8rem 0;
    background: transparent;
}

.section-subtitle {
    max-width: 600px;
    margin: 1rem auto 4rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* CEO Page Bio List */
.bio-list {
    margin-top: 2rem;
    list-style: none;
}

.bio-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

.bio-list li::before {
    content: "•";
    color: var(--color-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    border-radius: 24px;
    border-radius: 24px;
    background: var(--color-bg-light);
    border: 1px solid #222;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 0 solid var(--color-primary);
}

.project-card:hover .project-overlay {
    opacity: 1;
    border-width: 4px;
}

.project-details {
    text-align: center;
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-details {
    transform: translateY(0);
}

.p-location {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    color: #ccc;
    text-transform: uppercase;
}

.p-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.btn-link {
    color: #000;
    background: var(--gradient-gold);
    border: none;
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    border-radius: 50px;
}

.btn-link:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.status-badge.sold {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.status-badge.new {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: none;
}

.project-info {
    padding: 1.5rem;
    border-top: 1px solid #222;
}

.project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.project-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background: #000;
    color: #888;
    padding: 5rem 0 2rem;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer a {
    transition: color 0.3s;
}

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

.newsletter-form {
    display: flex;
    margin-top: 1rem;
    border-bottom: 1px solid #333;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: none;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    background: transparent;
    color: var(--color-primary);
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--color-primary);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #555;
    text-align: center;
}

/* Page: Project Details */
.project-detail-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.project-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 1));
}

.detail-content {
    position: relative;
    z-index: 2;
    padding-bottom: 4rem;
}

.detail-badge {
    background: var(--gradient-gold);
    color: #000;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.detail-location {
    font-size: 1.2rem;
    color: #ccc;
}

.project-stats-bar {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid #222;
    padding: 2rem 0;
    backdrop-filter: blur(5px);
}

.p-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.p-stat-item h4 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.p-stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.project-description {
    padding: 5rem 0;
}

.desc-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.desc-text p {
    margin-bottom: 1.5rem;
    color: #bbb;
    font-size: 1.1rem;
}


/* Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .p-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .upcoming-title {
        font-size: 2.5rem;
    }

    .desc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        border-left: 1px solid #333;
        z-index: 999;
        transition: 0.4s;
        padding-top: 5rem;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .detail-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Inquire Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--color-gold);
    padding: 3rem 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--color-gold);
}

.modal-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.modal-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-text {
    color: #ccc;
    margin-bottom: 2rem;
}

.phone-display {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 700;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .phone-display {
        font-size: 2rem;
    }
}

/* Upcoming Project Featured */
.upcoming-project-featured {
    padding: 6rem 0;
    margin: 4rem 0;
    /* Dark luxury background */
    background: radial-gradient(circle at 20% 50%, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    overflow: visible;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.9) inset;
}

/* Background Elements */
.upcoming-project-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text Content */

.upcoming-badge {
    background: var(--gradient-gold);
    color: #050505;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: badgePulse 2s infinite alternate;
}

.upcoming-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.upcoming-desc {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 90%;
}

/* Features List Mini */
.upcoming-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.u-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
}

.u-feature i {
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.u-feature span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

/* Image Wrapper */
.upcoming-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.floating-card {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform-style: preserve-3d;
    animation: floatImage 6s ease-in-out infinite;
}

.upcoming-img-main {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    z-index: -1;
    filter: blur(40px);
    animation: glowPulse 4s infinite alternate;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.4);
}

@keyframes badgePulse {
    from {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    to {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotateX(2deg);
    }

    50% {
        transform: translateY(-20px) rotateX(-2deg);
    }
}

@keyframes glowPulse {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 992px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .upcoming-text-content {
        order: 1;
    }

    .upcoming-image-wrapper {
        order: 2;
    }

    .upcoming-features {
        justify-content: center;
    }

    .upcoming-title {
        font-size: 3rem;
    }

    .upcoming-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Amenities Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.amenity-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.amenity-card span {
    font-size: 0.85rem;
    color: #e0e0e0;
    font-weight: 500;
    line-height: 1.4;
}

/* Floor Plan Tiles */
.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.floor-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.floor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floor-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floor-card:hover::before {
    opacity: 1;
}

.floor-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease;
}

.floor-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.floor-card h4 {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 600;
    z-index: 1;
}

.floor-card p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
    z-index: 1;
}

/* Payment Plan Section */
.payment-plan-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 2rem;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.payment-table th {
    background: var(--gradient-gold);
    color: #000;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Header Corners */
.payment-table thead tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.payment-table thead tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.payment-table td {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

/* Body Row Styling */
.payment-table tbody tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: 800;
    color: #333;
    text-align: left;
    padding-left: 1.5rem;
}

.payment-table tbody tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.spacer-row td {
    background: transparent;
    padding: 0.5rem;
    pointer-events: none;
}

.payment-table tr:hover td {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-badge-container {
    position: absolute;
    top: 50px;
    right: 20px;
    z-index: 10;
}

.diamond-badge {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.1),
        0 0 0 6px var(--color-primary),
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pulse-glow 3s infinite alternate;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.diamond-badge::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    top: 5%;
    left: 5%;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 0 6px var(--color-primary), 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 6px var(--color-primary), 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

.badge-content {
    transform: rotate(-45deg);
    text-align: center;
    color: #000;
    line-height: 1.1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.badge-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    letter-spacing: 1px;
}

.payment-notes {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.note-list {
    list-style: none;
    padding: 0;
    color: #ccc;
    font-size: 0.9rem;
}

.note-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.note-list li::before {
    content: '•';
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-right: 10px;
}

@media (max-width: 900px) {
    .plan-badge-container {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 2rem;
        width: 100px;
    }
}

/* Mobile Responsive Payment Plan */
@media (max-width: 900px) {
    .payment-table {
        min-width: 100%;
        display: block;
    }

    .payment-table thead {
        display: none;
    }

    .payment-table tbody,
    .payment-table tr {
        display: block;
        width: 100%;
    }

    .payment-table tbody tr {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
        margin-bottom: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(212, 175, 55, 0.3);
        overflow: hidden;
    }

    .payment-table .spacer-row {
        display: none;
    }

    .payment-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: transparent !important;
        /* Override white bg */
    }

    .payment-table td:last-child {
        border-bottom: none;
    }

    /* Mobile Labels from Data Attribute */
    .payment-table td::before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.8rem;
        color: #888;
        text-align: left;
    }

    /* Primary Value (Property Type) */
    .payment-table td[data-label="Property Type"] {
        background: var(--gradient-gold) !important;
        color: #000;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .payment-table td[data-label="Property Type"]::before {
        display: none;
    }

    /* Override border radius from desktop */
    .payment-table tbody tr td:first-child,
    .payment-table tbody tr td:last-child {
        border-radius: 0;
    }
}

/* Visual Floor Plans Gallery */
.visual-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.visual-plan-item {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.visual-plan-item:hover {
    transform: scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.visual-plan-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.visual-plan-item:hover img {
    transform: scale(1.05);
}

/* Category Tags Section */
.category-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 1rem;
    gap: 0.5rem;
}

.category-header {
    background: var(--gradient-gold);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.category-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 200px;
}

.category-tag {
    background: #fff;
    color: #000;
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #ccc;
}

@media (max-width: 900px) {
    .category-section {
        align-items: center;
        width: 100%;
    }

    .category-tags {
        width: 100%;
        max-width: 300px;
    }
}