/* ============================================
   CSS VARIABLES & RESET - ELEGANT DARK THEME
   ============================================ */
:root {
    /* Elegant Color Palette */
    --bg-primary: #0A0E1A;
    --bg-secondary: #12162B;
    --bg-tertiary: #1A1F3A;
    --accent-gold: #C9A961;
    --accent-gold-light: #D4B87A;
    --accent-blue: #3B82F6;
    --text-primary: #FFFFFF;
    --text-secondary: #B4B4B4;
    --text-muted: #6B7280;
    --border-color: #2A3052;
    
    /* Refined Gradients */
    --gradient-primary: linear-gradient(135deg, #0A0E1A 0%, #1A1F3A 100%);
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 14, 26, 0) 0%, rgba(10, 14, 26, 0.9) 100%);
    
    /* Elegant Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
    --glow-gold: 0 0 30px rgba(201, 169, 97, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    color: var(--text-primary);
}

.loader-logo {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-gold);
    width: 0;
    animation: loadProgress 2s ease-in-out forwards;
    box-shadow: var(--glow-gold);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ============================================
   NAVIGATION - ENHANCED
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
}

.nav-logo i {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION - REFINED
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    overflow: hidden;
    padding: 2rem clamp(1rem, 5vw, 2rem);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(201, 169, 97, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, #0A0E1A 0%, #12162B 50%, #1A1F3A 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(201, 169, 97, 0.03) 0px, transparent 1px, transparent 80px, rgba(201, 169, 97, 0.03) 81px),
        repeating-linear-gradient(0deg, rgba(201, 169, 97, 0.03) 0px, transparent 1px, transparent 80px, rgba(201, 169, 97, 0.03) 81px);
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.015) 0%, transparent 25%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-primary);
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 31, 58, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent-gold);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.hero-title {
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.title-line-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: clamp(0.85rem, 2vw, 1rem);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(201, 169, 97, 0.4);
}

.btn-secondary:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    min-width: clamp(160px, 25vw, 200px);
}

.stat-item i {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--accent-gold);
}

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* ============================================
   COMMON SECTION STYLES
   ============================================ */
.section-padding {
    padding: clamp(3rem, 10vw, 6rem) clamp(1rem, 5vw, 2rem);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 100% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 100%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
}

.about-icon-box {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    background: rgba(26, 31, 58, 0.8);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon-box i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--accent-gold);
}

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.feature-item i {
    color: var(--accent-gold);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1.5px solid rgba(201, 169, 97, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: clamp(400px, 60vw, 600px);
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--text-primary);
    text-align: center;
}

.overlay-content i {
    font-size: clamp(3rem, 8vw, 4rem);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
    color: var(--accent-gold);
}

.overlay-content i:hover {
    transform: scale(1.1);
}

.floating-card {
    position: absolute;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(-1rem, -3vw, -2rem);
    background: rgba(26, 31, 58, 0.95);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1.25rem, 4vw, 2rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

.card-icon {
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bg-primary);
}

.card-content h4 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: 'Cormorant Garamond', serif;
}

.card-content p {
    color: var(--text-secondary);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    margin: 0;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        var(--bg-primary);
    position: relative;
}

.leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(201, 169, 97, 0.02) 100px, rgba(201, 169, 97, 0.02) 101px);
    z-index: 0;
}

.leadership-content {
    max-width: 1100px;
    margin: 0 auto;
}

.leader-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(2rem, 6vw, 3rem);
    background: rgba(26, 31, 58, 0.6);
    border: 1.5px solid rgba(201, 169, 97, 0.2);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.leader-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0 auto;
}

.leader-profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.leader-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}

.leader-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.leader-info h3 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.leader-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leader-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.leader-achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.achievement i {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--accent-gold);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.02) 50%, transparent 100%);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1.5px solid rgba(201, 169, 97, 0.2);
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(18, 22, 43, 0.8) 100%);
    border-color: rgba(201, 169, 97, 0.4);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    background: rgba(18, 22, 43, 0.8);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.service-icon i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--accent-gold);
}

.service-card h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.service-features i {
    color: var(--accent-gold);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

/* ============================================
   PROPERTIES SECTION
   ============================================ */
.properties {
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
}

.property-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1.5px solid rgba(201, 169, 97, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.property-image {
    position: relative;
    height: clamp(220px, 40vw, 280px);
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 700;
    z-index: 2;
}

.property-badge.sold-out {
    background: #EF4444;
    color: var(--text-primary);
}

.property-badge.featured-badge {
    background: var(--accent-blue);
    color: var(--text-primary);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.overlay-btn {
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.overlay-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

.property-content {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.property-header h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    flex: 1;
}

.property-price {
    color: var(--accent-gold);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.property-location i {
    color: var(--accent-gold);
}

.property-features {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.feature i {
    color: var(--text-secondary);
}

.properties-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(201, 169, 97, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201, 169, 97, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(201, 169, 97, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(201, 169, 97, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.contact-info > p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    background: rgba(26, 31, 58, 0.8);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--accent-gold);
}

.contact-text span {
    display: block;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-text a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.contact-text a:hover {
    color: var(--accent-gold);
}

.contact-text p {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: clamp(45px, 10vw, 50px);
    height: clamp(45px, 10vw, 50px);
    background: rgba(26, 31, 58, 0.8);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.contact-cta {
    display: flex;
    align-items: center;
}

.cta-card {
    background: rgba(26, 31, 58, 0.8);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    width: 100%;
    backdrop-filter: blur(20px);
}

.cta-icon {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    background: rgba(18, 22, 43, 0.8);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-icon i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--accent-gold);
}

.cta-card h3 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    color: var(--accent-gold);
    font-size: clamp(1.5rem, 4vw, 1.8rem);
}

.cta-feature span {
    color: var(--text-secondary);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, #080B15 100%);
    color: var(--text-primary);
    padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 5vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    border-top: 1.5px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    opacity: 0.5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(2rem, 5vw, 3rem);
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.footer-logo i {
    font-size: clamp(1.75rem, 4vw, 2rem);
    color: var(--accent-gold);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: clamp(40px, 10vw, 45px);
    height: clamp(40px, 10vw, 45px);
    background: rgba(26, 31, 58, 0.8);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 1rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: clamp(1.5rem, 4vw, 2rem);
    right: clamp(1.5rem, 4vw, 2rem);
    width: clamp(45px, 10vw, 50px);
    height: clamp(45px, 10vw, 50px);
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    box-shadow: var(--glow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: min(280px, 80vw);
        height: calc(100vh - 70px);
        background: rgba(18, 22, 43, 0.98);
        border-left: 1.5px solid rgba(201, 169, 97, 0.3);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(20px) saturate(180%);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-primary);
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .about-content,
    .contact-content,
    .leader-card {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .property-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .property-price {
        margin-top: 0.5rem;
    }
}

/* High-DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .image-wrapper img,
    .property-image img,
    .leader-profile {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}