/* ==========================================================================
   ATHULYA AURA - LUXURY BLACK & GOLD 3D INTERACTIVE PORTFOLIO STYLES
   ========================================================================== */

:root {
    --bg-primary: #090B10;
    --bg-secondary: #0E121A;
    --bg-surface: #141A26;
    --bg-glass: rgba(14, 18, 26, 0.72);
    --bg-glass-hover: rgba(22, 28, 40, 0.88);

    /* Executive Champagne Gold & Emerald Palette */
    --gold-primary: #E6C687;
    --gold-light: #F5E5C9;
    --gold-dark: #C5A059;
    --gold-amber: #E6C687;
    
    /* Emerald ROI Accent */
    --emerald-accent: #10B981;
    --emerald-light: #34D399;
    --emerald-glow: 0 0 20px rgba(16, 185, 129, 0.3);

    --gold-gradient: linear-gradient(135deg, #F5E5C9 0%, #E6C687 50%, #C5A059 100%);
    --gold-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #F5E5C9 50%, #E6C687 100%);
    --gold-glow: 0 8px 32px rgba(230, 198, 135, 0.15);
    --gold-glow-lg: 0 16px 48px rgba(230, 198, 135, 0.28);

    /* Borders & Accents */
    --border-gold: rgba(230, 198, 135, 0.16);
    --border-gold-hover: rgba(230, 198, 135, 0.45);
    --border-dark: rgba(255, 255, 255, 0.06);

    /* Typography */
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --text-dark: #090B10;

    --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    perspective: 1200px;
}

/* Three.js WebGL 3D Fixed Background Canvas */
#webglCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--gold-amber);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.custom-cursor-follower {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(212, 175, 55, 0.7);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

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

.font-bold {
    font-weight: 700;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto;
}

.gold-underline {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    margin-top: 16px;
}

.gold-underline.center {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   3D CARD TILT & GLASSMORPHISM ENGINE STYLES
   ========================================================================== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.glass-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--gold-glow);
}

.gold-border {
    border: 1px solid var(--gold-primary) !important;
}

/* 3D Glass Reflection Glare Effect */
.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 224, 130, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    mix-blend-mode: overlay;
}

.glass-card:hover .card-glare {
    opacity: 1;
}

/* 3D Inner Layer Depth Offset */
.layer-3d {
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: var(--font-body);
    transform-style: preserve-3d;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
    background: var(--gold-gradient-hover);
    box-shadow: var(--gold-glow-lg);
    transform: translateY(-3px) scale(1.02);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid var(--gold-primary);
}

.btn-gold-outline:hover {
    background: rgba(212, 175, 55, 0.14);
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px) scale(1.02);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.glow-effect {
    position: relative;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.15rem;
    box-shadow: var(--gold-glow);
    transition: transform 0.3s ease;
}

.brand-logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .gold-gradient-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-gold);
    z-index: 1001;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease-in-out;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.close-drawer {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.drawer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-link i {
    color: var(--gold-primary);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    transform-style: preserve-3d;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-amber);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-amber);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-highlights {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.highlight-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
}

.visual-card-wrapper {
    position: relative;
    transform-style: preserve-3d;
}

.gold-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: var(--gold-gradient);
    filter: blur(90px);
    opacity: 0.35;
    border-radius: 50%;
    z-index: 0;
}

.main-hero-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.avatar-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gold-gradient);
    padding: 3px;
    margin: 0 auto 20px;
    box-shadow: var(--gold-glow);
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-avatar-icon {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-title {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-skills-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.card-status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.825rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
}

/* Floating Stats Cards */
.stat-float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
}

.gold-icon {
    font-size: 1.6rem;
    color: var(--gold-primary);
}

.float-top-right {
    top: -20px;
    right: -20px;
}

.float-bottom-left {
    bottom: -20px;
    left: -20px;
}

.stat-number {
    font-size: 1.35rem;
    font-weight: 800;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Stats Counter Section */
.stats-bar-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: rgba(18, 18, 24, 0.55);
    margin-top: 60px;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-value {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-divider {
    width: 1px;
    height: 45px;
    background: var(--border-dark);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-card-container {
    position: relative;
}

.about-profile-card {
    text-align: center;
}

.gold-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed var(--gold-primary);
    padding: 10px;
    margin: 0 auto 24px;
}

.profile-icon-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 14px 0 20px;
}

.academy-badge {
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about-heading {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.skills-wrapper {
    margin: 32px 0;
}

.skills-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.skill-item {
    margin-bottom: 18px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C5A059 0%, #E6C687 65%, #10B981 100%);
    border-radius: var(--radius-full);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}

.about-actions {
    display: flex;
    gap: 20px;
}

/* Tailored Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-glow);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Portfolio & Case Studies */
.portfolio-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.portfolio-card {
    padding: 0;
}

.portfolio-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image-wrapper img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-category-badge {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.portfolio-summary {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-dark);
    padding-top: 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.portfolio-stats strong {
    color: var(--gold-light);
}

/* Calculator Section */
.calculator-wrapper {
    padding: 50px;
}

.calculator-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.input-group {
    margin-bottom: 28px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.custom-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-body);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    accent-color: var(--gold-primary);
    width: 16px;
    height: 16px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.custom-slider {
    width: 100%;
    accent-color: var(--gold-primary);
}

.calculator-results {
    padding: 32px;
}

.results-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.result-metric-box {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.metric-value {
    font-size: 1.75rem;
}

.calculator-cta {
    margin-top: 30px;
}

/* Blogs Section */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--text-dark);
    background: var(--gold-gradient);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.925rem;
    margin-bottom: 24px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
    font-size: 0.85rem;
}

.read-time {
    color: var(--text-secondary);
}

.gold-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.gold-link:hover {
    color: var(--gold-amber);
    gap: 10px;
}

/* FAQ Accordion */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 0;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-icon {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
    border-top: 1px solid var(--border-dark);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.contact-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-location-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form-card {
    padding: 40px;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 12, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

/* Footer */
.footer {
    background: #060608;
    border-top: 1px solid var(--border-gold);
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 16px 0 24px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 12px;
}

.footer-links-group a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--gold-glow);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .hero-highlights {
        justify-content: center;
    }

    .about-grid, .contact-grid, .calculator-body-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .stat-divider {
        display: none;
    }

    .calculator-wrapper {
        padding: 24px;
    }

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