/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Gold & Light Theme - Darker/Richer Tones */
    --primary-gold: #B8860B;
    /* Dark Goldenrod */
    --primary-gold-light: #DAA520;
    /* Goldenrod */
    --primary-gold-dark: #8B6508;
    /* Dark Goldenrod 4 */
    --primary-gold-pale: #FFF8E7;

    /* Switched to Light Theme Backgrounds */
    --dark-bg: #FFFFFF;
    --dark-bg-secondary: #F8F9FA;
    --dark-bg-tertiary: #FFFFFF;

    /* Adjusted text colors for light background */
    --silver: #555555;
    --silver-light: #777777;
    --dark-text: #1e293b;
    --gray-text: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --black: #0f172a;

    /* Gradients - Richer Darker Gold */
    --gradient-gold: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #8B6508 100%);
    --gradient-gold-shine: linear-gradient(135deg, #FFD700 0%, #B8860B 40%, #8B4513 100%);
    --gradient-dark: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    --gradient-premium: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 50%, #FFFFFF 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-dark: rgba(255, 255, 255, 0.95);

    /* Shadows - Adjusted for Light Theme */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-glow-gold: 0 0 40px rgba(212, 168, 75, 0.2);
    --shadow-glow-gold-intense: 0 0 60px rgba(212, 168, 75, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FLOATING ORBS & PARTICLES ===== */
.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.15;
    filter: blur(1px);
}

.orb-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: floatOrb1 8s ease-in-out infinite;
}

.orb-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 85%;
    animation: floatOrb2 10s ease-in-out infinite;
}

.orb-3 {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 70%;
    animation: floatOrb3 6s ease-in-out infinite;
}

.orb-4 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation: floatOrb4 12s ease-in-out infinite;
}

.orb-5 {
    width: 25px;
    height: 25px;
    top: 15%;
    left: 50%;
    animation: floatOrb5 7s ease-in-out infinite;
}

/* Popping ball animation */
.pop-ball {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-gold-shine);
    box-shadow: 0 0 20px rgba(212, 168, 75, 0.5);
}

.pop-ball-1 {
    width: 15px;
    height: 15px;
    top: 30%;
    left: 15%;
    animation: popBall 3s ease-in-out infinite;
}

.pop-ball-2 {
    width: 12px;
    height: 12px;
    top: 50%;
    left: 80%;
    animation: popBall 4s ease-in-out infinite 0.5s;
}

.pop-ball-3 {
    width: 10px;
    height: 10px;
    top: 70%;
    left: 45%;
    animation: popBall 3.5s ease-in-out infinite 1s;
}

.pop-ball-4 {
    width: 18px;
    height: 18px;
    top: 25%;
    left: 75%;
    animation: popBall 5s ease-in-out infinite 1.5s;
}

.pop-ball-5 {
    width: 8px;
    height: 8px;
    top: 85%;
    left: 60%;
    animation: popBall 2.5s ease-in-out infinite 0.8s;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.25;
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: translate(-40px, 30px) scale(1.1);
        opacity: 0.2;
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(20px, 20px) scale(1.3);
        opacity: 0.3;
    }
}

@keyframes floatOrb4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }

    50% {
        transform: translate(50px, -20px) scale(1.15);
        opacity: 0.22;
    }
}

@keyframes floatOrb5 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.18;
    }

    50% {
        transform: translate(-30px, 35px) scale(1.25);
        opacity: 0.28;
    }
}

@keyframes popBall {

    0%,
    100% {
        transform: scale(0.5);
        opacity: 0;
    }

    10% {
        transform: scale(1.3);
        opacity: 1;
    }

    30% {
        transform: scale(1);
        opacity: 0.9;
    }

    70% {
        transform: scale(1);
        opacity: 0.9;
    }

    90% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Sparkle animations */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-gold-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-gold), 0 0 20px var(--primary-gold-light);
}

.sparkle-1 {
    top: 35%;
    left: 25%;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-2 {
    top: 55%;
    left: 65%;
    animation: sparkle 2.5s ease-in-out infinite 0.3s;
}

.sparkle-3 {
    top: 20%;
    left: 80%;
    animation: sparkle 1.8s ease-in-out infinite 0.7s;
}

.sparkle-4 {
    top: 75%;
    left: 35%;
    animation: sparkle 2.2s ease-in-out infinite 1s;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* ===== ENHANCED BUTTONS - GOLD THEME ===== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow-gold-intense);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover::after {
    width: 300%;
    height: 300%;
}

.btn-outline:hover {
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-dark {
    background: var(--black);
    color: var(--primary-gold);
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(212, 168, 75, 0.3);
}

.btn-dark:hover {
    background: var(--dark-bg-tertiary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow-gold);
    border-color: var(--primary-gold);
}

/* ===== ENHANCED HEADER - PREMIUM DARK ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-dark);
    border-bottom-color: rgba(212, 168, 75, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(212, 168, 75, 0.3));
}

.logo:hover img {
    transform: rotate(-5deg) scale(1.05);
    filter: drop-shadow(0 0 20px rgba(212, 168, 75, 0.5));
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 12px;
    color: var(--black);
    font-size: 22px;
    box-shadow: var(--shadow-glow-gold);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: var(--shadow-glow-gold-intense);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-text);
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--dark-bg-tertiary);
    border: 1px solid rgba(212, 168, 75, 0.2);
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    border-color: var(--primary-gold);
}

.header-phone i {
    background: var(--gradient-gold);
    padding: 10px;
    border-radius: 50%;
    color: var(--black);
    font-size: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 168, 75, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 5px rgba(212, 168, 75, 0.2);
    }
}

.header-socials {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    transform: translateY(-4px) rotate(10deg);
    box-shadow: var(--shadow-glow-gold);
}

.mobile-menu-btn {
    display: none;
    background: var(--gradient-gold);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--dark-bg);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-gold);
}

/* ===== ENHANCED HERO SECTION - PREMIUM DARK ===== */
.hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-premium);
}

/* Animated Background Shapes */
.hero-bg-shape {
    position: absolute;
    top: -150px;
    right: -250px;
    width: 800px;
    height: 800px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
    animation: floatShape 8s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.03;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: floatDot 5s ease-in-out infinite;
    box-shadow: var(--shadow-glow-gold);
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(5deg);
    }
}

@keyframes floatDot {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
}

/* Golden line pattern overlay */
.hero .container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-gold) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0;
    animation: fadeInScale 1s ease forwards 0.5s;
}

@keyframes fadeInScale {
    to {
        opacity: 0.2;
        transform: scale(1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 40px rgba(212, 168, 75, 0.3);
}

@keyframes shimmer {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }

    100% {
        filter: brightness(1);
    }
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-gold);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
    animation: expandWidth 0.8s ease forwards 0.5s;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

.hero-description {
    font-size: 17px;
    color: var(--silver-light);
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.8;
    animation: fadeInUp 1s ease forwards 0.3s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .btn {
    animation: fadeInUp 1s ease forwards 0.5s;
    opacity: 0;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--gradient-gold);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.08;
    animation: morphShape 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    border-radius: 20px;
    transition: var(--transition);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    border: 2px solid rgba(212, 168, 75, 0.2);
}

.hero-image:hover img {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    border-color: rgba(212, 168, 75, 0.4);
}

/* ===== ENHANCED SERVICE CARDS - GOLD THEME ===== */
.hero-services {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--dark-bg-secondary);
    position: relative;
}

.hero-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.3;
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card Styles */
.service-card {
    background: var(--dark-bg-tertiary);
    border: 2px solid var(--primary-gold);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-gold), transparent 30%);
    opacity: 0;
    transition: var(--transition-slow);
    animation: rotate 4s linear infinite paused;
}

.service-card:hover::before {
    opacity: 0.08;
    animation-play-state: running;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--dark-bg-tertiary);
    border-radius: 22px;
    z-index: 0;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
    border-color: var(--primary-gold);
}

/* Starburst Badge - Gold Theme */
.service-badge {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-badge {
    transform: scale(1.1) rotate(5deg);
}

.service-badge::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 16px;
    transform: rotate(0deg);
    z-index: 1;
    box-shadow: var(--shadow-glow-gold);
    transition: var(--transition);
}

.service-badge::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 16px;
    transform: rotate(45deg);
    z-index: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-badge::before {
    transform: rotate(10deg);
}

.service-card:hover .service-badge::after {
    transform: rotate(55deg);
}

.badge-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 36px;
    color: var(--dark-bg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.service-card:hover .badge-icon i {
    transform: scale(1.1);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover .service-card-title {
    color: var(--primary-gold);
}

.service-card-desc {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.7;
}

/* ===== ENHANCED WHY CHOOSE US SECTION ===== */
.why-choose {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.03;
    transform: translateY(-50%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 45px 35px;
    background: var(--dark-bg-tertiary);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
    border-color: rgba(212, 168, 75, 0.3);
    transform: translateY(-8px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
    border-radius: 50%;
    font-size: 36px;
    color: var(--primary-gold);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(212, 168, 75, 0.2);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow-gold);
    border-color: transparent;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
    inset: -8px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary-gold);
}

.feature-card p {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.7;
}

/* ===== ENHANCED REASONS SECTION ===== */
.reasons-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.reasons-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.03;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reasons-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.reasons-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
}

.reasons-image:hover::before {
    opacity: 0.1;
}

.reasons-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-gold);
    border-radius: 20px;
    opacity: 0.15;
    z-index: -1;
}

.reasons-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 168, 75, 0.2);
}

.reasons-image:hover img {
    transform: scale(1.03);
    border-color: rgba(212, 168, 75, 0.4);
}

.reasons-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.reasons-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.reasons-description {
    font-size: 17px;
    color: var(--silver);
    margin-bottom: 45px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 60px;
}

.stat-item {
    text-align: left;
    padding: 25px 35px;
    background: var(--dark-bg-tertiary);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 75, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
    border-color: rgba(212, 168, 75, 0.3);
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--silver);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== ENHANCED PRICING SECTION ===== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--dark-bg-secondary);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--dark-bg-tertiary);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid rgba(212, 168, 75, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.03;
    transition: var(--transition);
}

.pricing-card:hover::before {
    transform: scale(1.5);
    opacity: 0.06;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
    border-color: var(--primary-gold);
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(180deg, var(--dark-bg-tertiary) 0%, rgba(212, 168, 75, 0.05) 100%);
}

.pricing-card.featured::before {
    opacity: 0.08;
}

.pricing-card.featured:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold-intense);
}

.pricing-card.featured::after {
    content: 'Popular';
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 8px 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
}

.pricing-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
    border-radius: 50%;
    font-size: 44px;
    color: var(--primary-gold);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(212, 168, 75, 0.2);
}

.pricing-card:hover .pricing-icon {
    background: var(--gradient-gold);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-gold);
    border-color: transparent;
}

.pricing-card.featured:hover .pricing-icon {
    box-shadow: var(--shadow-glow-gold-intense);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-price .price {
    font-size: 56px;
    font-weight: 800;
    color: #4A3C13;
    /* Dark Brownish/Bronze */
    /* Removed shiny gradient for better readability */
    line-height: 1;
}

.pricing-card.featured .pricing-price .price {
    color: #4A3C13;
    -webkit-text-fill-color: initial;
    background: none;
}

.pricing-features {
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--silver);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-gold);
    font-size: 16px;
}

/* ===== ENHANCED GALLERY SECTION - 3 COLUMN GRID ===== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

/* First row - shorter images */
.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    height: 220px;
}

/* Second row - taller images */
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Featured center item in second row */
.gallery-item-featured {
    border: 2px solid rgba(212, 168, 75, 0.3);
}

.gallery-item-featured:hover {
    border-color: var(--primary-gold);
}

/* ===== ENHANCED CTA BANNER ===== */
.cta-banner {
    padding: 60px 0;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--dark-bg);
    border-radius: 50%;
    opacity: 0.08;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--dark-bg);
    border-radius: 50%;
    opacity: 0.08;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

/* ===== ENHANCED NEWS SECTION ===== */
.news-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.news-card {
    background: var(--dark-bg-tertiary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(212, 168, 75, 0.1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
    border-color: rgba(212, 168, 75, 0.3);
}

.news-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.news-card:hover .news-image::after {
    opacity: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-content {
    padding: 35px;
}

.news-date {
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 15px;
    background: rgba(212, 168, 75, 0.15);
    border-radius: 20px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

.news-card:hover .news-title {
    color: var(--primary-gold);
}

.news-excerpt {
    font-size: 15px;
    color: var(--silver);
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-link i {
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-gold-light);
}

.news-link:hover i {
    transform: translateX(5px);
}

.featured-news .news-image {
    height: 380px;
}

.featured-news .news-content {
    background: var(--gradient-gold);
    position: relative;
}

.featured-news .news-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--primary-gold);
}

.news-badge {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.featured-news .btn-primary {
    background: var(--gradient-dark);
    color: var(--primary-gold);
}

.featured-news .btn-primary:hover {
    box-shadow: var(--shadow-dark);
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    padding: 100px 0 0;
    border-top: 1px solid rgba(212, 168, 75, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-description {
    font-size: 15px;
    color: var(--silver);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials .social-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
}

.footer-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 15px;
    color: var(--silver);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-links a:hover::before {
    width: 15px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(212, 168, 75, 0.2);
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    background: var(--gradient-gold);
    color: var(--black);
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    opacity: 0.9;
}

.footer-bottom i {
    color: #ef4444;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-orbs .orb,
    .floating-orbs .pop-ball,
    .floating-orbs .sparkle {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav,
    .header-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        margin: 0 auto;
        max-width: 380px;
    }

    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reasons-image img {
        height: 380px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .cta-text {
        font-size: 22px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a::before {
        display: none;
    }

    .section-title {
        font-size: 36px;
    }

    .reasons-title {
        font-size: 36px;
    }

    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 40px;
    }

    .pricing-price .price {
        font-size: 44px;
    }

    .section-title,
    .reasons-title {
        font-size: 30px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.5s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.6s;
}

/* ===== PREMIUM SHINE EFFECTS ===== */
.gold-shine {
    position: relative;
    overflow: hidden;
}

.gold-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Golden glow text effect */
.glow-text {
    text-shadow: 0 0 10px rgba(212, 168, 75, 0.5),
        0 0 20px rgba(212, 168, 75, 0.3),
        0 0 30px rgba(212, 168, 75, 0.2);
}

/* Luxury border effect */
.luxury-border {
    position: relative;
}

.luxury-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-bg-tertiary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-gold);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
    border-color: rgba(212, 168, 75, 0.3);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--primary-gold);
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--primary-gold);
}

/* Footer Contact Styling */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--silver);
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary-gold);
    font-size: 16px;
    width: 20px;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        height: 200px;
    }

    .footer-contact {
        text-align: left;
        display: inline-block;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-bg-tertiary);
    padding: 50px;
    border-radius: 24px;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    background: var(--dark-bg-secondary);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    font-family: var(--font-primary);
    color: var(--dark-text);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
    background: var(--white);
}

.form-footer {
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 30px 20px;
    }
}