/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0F14;
    color: #e5e5e5;
    line-height: 1.6;
    overflow-x: hidden;
    padding: 12px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    background: rgba(11, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(200, 168, 106, 0.3);
    border-radius: 16px;
    padding: 12px 24px; /* Reduced from 16px to 12px for better proportion */
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px; /* Increased for better spacing with larger text */
    background: none;
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.logo-icon {
    width: 70px; /* Large and visible */
    height: 70px;
    margin-right: 8px;
    object-fit: contain;
    
    /* Clean rendering - no hacks needed! */
    background: transparent;
    border: none;
    outline: none;
    
    /* Beautiful golden glow */
    filter: drop-shadow(0 0 12px rgba(200, 168, 106, 0.5));
    
    /* Crisp rendering */
    image-rendering: -webkit-optimize-contrast;
    transition: filter 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 16px rgba(200, 168, 106, 0.7));
}

.logo-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important; /* Force larger size */
    font-weight: 600 !important; /* Force bolder weight */
    color: #C8A86A !important; /* Golden crescent color */
    letter-spacing: 0.8px !important;
    text-shadow: 0 0 10px rgba(200, 168, 106, 0.3) !important;
    line-height: 1.2;
}

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

.nav-links a {
    color: #F2EBDD;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #C8A86A;
}

/* Buttons */
.whatsapp-btn {
    background: #13B981;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(19, 185, 129, 0.3);
}

.whatsapp-btn:hover {
    background: #10a372;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 185, 129, 0.4);
}

.btn {
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #13B981;
    color: white;
    box-shadow: 0 4px 16px rgba(19, 185, 129, 0.3);
}

.btn-primary:hover {
    background: #10a372;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: #C8A86A;
    border: 1.5px solid #C8A86A;
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(200, 168, 106, 0.1);
    border-color: #C8A86A;
    color: #C8A86A;
    box-shadow: 0 4px 15px rgba(200, 168, 106, 0.2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    border: 1.5px solid rgba(200, 168, 106, 0.3);
    border-radius: 16px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #070A10 0%, 
        #0B1420 15%,
        #09282A 40%, 
        #0B3030 55%,
        #091820 75%,
        #070A0E 100%);
    z-index: 0;
}

/* Wireframe Shapes */
.wireframe-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(10, 15, 20, 0) 0%, 
        rgba(7, 10, 14, 0.6) 50%,
        rgba(7, 10, 14, 0.9) 100%);
    z-index: 1;
}

/* Floating Gemstones */
.floating-gem {
    position: absolute;
    opacity: 0.75;
    filter: drop-shadow(0 0 40px currentColor) 
            drop-shadow(0 15px 50px rgba(0, 0, 0, 0.5));
    animation: float 8s ease-in-out infinite;
    z-index: 3;
    mix-blend-mode: screen;
    border: none;
    background: transparent;
    outline: none;
}

.gem-1 {
    width: 310px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    color: #FFD700; /* Luxurious golden yellow glow */
    filter: drop-shadow(0 0 40px currentColor) 
            drop-shadow(0 15px 50px rgba(0, 0, 0, 0.5))
            brightness(1.1) contrast(1.2);
    background: transparent;
}

.gem-2 {
    width: 270px;
    top: 52%;
    left: 10%;
    animation-delay: -2.5s;
    color: #00FF7F; /* Green emerald glow */
    filter: drop-shadow(0 0 40px currentColor) 
            drop-shadow(0 15px 50px rgba(0, 0, 0, 0.5))
            brightness(1.1) contrast(1.2);
    background: transparent;
}

.gem-7 {
    width: 180px; /* Small, proportionate size */
    top: 10%; /* Higher up - clearly above yellow stone */
    left: 16%; /* More to the right, aligned with hero left area */
    animation-delay: -1s;
    color: #87CEEB; /* Light blue crystal glow */
    filter: drop-shadow(0 0 25px currentColor) 
            drop-shadow(0 10px 35px rgba(0, 0, 0, 0.5))
            brightness(1.15) contrast(1.25);
    background: transparent;
}

/* Clean styling for gem-7 (light blue crystal - transparent background) */
.gem-7 img {
    filter: brightness(1.1) contrast(1.15);
    background: transparent;
}

.gem-3 {
    width: 290px;
    top: 28%;
    right: 8%;
    animation-delay: -4s;
    color: #FF1493; /* Pink/Red glow */
}

.gem-4 {
    width: 260px;
    bottom: 15%;
    right: 10%;
    animation-delay: -1.5s;
    color: #FF69B4; /* Pink glow */
}

.gem-5 {
    width: 280px;
    top: 10%;
    right: 20%;
    animation-delay: -3.5s;
    color: #4169E1; /* Blue sapphire glow */
}

.gem-6 {
    width: 240px;
    top: 8%;
    right: 12%;
    animation-delay: -2s;
    color: #DC143C; /* Deep red ruby glow */
}

.floating-gem img {
    border: none;
    outline: none;
    background: transparent;
    display: block;
}

/* POWERFUL white background removal for gem-7 (rose quartz) */
.gem-7 img {
    /* Multiple techniques to remove white */
    filter: brightness(1.2) contrast(1.8) saturate(1.3);
    mix-blend-mode: darken; /* Removes white pixels on dark backgrounds */
    background: transparent;
    /* Additional fallback */
    isolation: isolate;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

/* Globe Container */
.globe-container {
    position: absolute;
    bottom: 50px;
    right: 80px;
    width: 200px;
    height: 200px;
    z-index: 5;
    opacity: 0.6;
    animation: globeGlow 4s ease-in-out infinite;
}

@keyframes globeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(100, 150, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(100, 150, 255, 0.6));
    }
}

.globe-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateGlobe 20s linear infinite;
    /* Remove black background - make it blend */
    mix-blend-mode: lighten; /* Removes black background, keeps lighter moon */
    background: transparent;
}

@keyframes rotateGlobe {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: -1;
    animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1350px;
    padding: 70px 80px;
    background: rgba(27, 36, 48, 0.35);
    border-radius: 36px;
    border: 2.5px solid rgba(200, 168, 106, 0.6);
    backdrop-filter: blur(35px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.8), 
                0 0 3px rgba(200, 168, 106, 0.5) inset,
                0 0 80px rgba(200, 168, 106, 0.15);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(27, 36, 48, 0.8);
    border: 1px solid rgba(200, 168, 106, 0.3);
    color: #F2EBDD;
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 104px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 28px;
    letter-spacing: 5px;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 22px;
    color: #F2EBDD;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.5;
}

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

.hero-footer {
    font-size: 14px;
    color: #F2EBDD;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.85;
    line-height: 1.6;
}

/* Trust Pillars Section */
.trust-pillars {
    padding: 100px 0;
    background: #0a0a0a;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.pillar-card {
    background: rgba(27, 36, 48, 0.5);
    border: 1px solid rgba(200, 168, 106, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 168, 106, 0.3);
    box-shadow: 0 16px 48px rgba(200, 168, 106, 0.1);
}

.pillar-icon {
    color: #C8A86A;
    margin-bottom: 24px;
    display: inline-block;
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: #F2EBDD;
    margin-bottom: 16px;
}

.pillar-card p {
    color: #F2EBDD;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(26, 35, 50, 0.2);
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    color: #C8A86A;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: #F2EBDD;
    line-height: 1.8;
    opacity: 0.9;
}

/* What We Trade Section */
.what-we-trade {
    padding: 100px 0;
    background: #0a0a0a;
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.trade-card {
    background: rgba(27, 36, 48, 0.5);
    border: 1px solid rgba(200, 168, 106, 0.15);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.trade-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 168, 106, 0.3);
    box-shadow: 0 16px 48px rgba(200, 168, 106, 0.1);
}

.trade-card h3 {
    font-size: 28px;
    font-weight: 500;
    color: #C8A86A;
    margin-bottom: 16px;
}

.trade-card p {
    color: #F2EBDD;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Sapphire Gallery */
.sapphire-gallery {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 36px;
    font-weight: 500;
    color: #C8A86A;
    text-align: center;
    margin-bottom: 16px;
}

.gallery-subtitle {
    text-align: center;
    color: #F2EBDD;
    font-size: 16px;
    margin-bottom: 48px;
    line-height: 1.7;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(27, 36, 48, 0.6) 0%, 
        rgba(13, 61, 61, 0.4) 100%);
    border: 1px solid rgba(200, 168, 106, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    border-color: rgba(200, 168, 106, 0.3);
    background: linear-gradient(135deg, 
        rgba(27, 36, 48, 0.8) 0%, 
        rgba(13, 61, 61, 0.6) 100%);
}

.gallery-placeholder span {
    color: #F2EBDD;
    font-size: 16px;
    font-weight: 500;
}

.gallery-placeholder small {
    color: #F2EBDD;
    font-size: 13px;
    opacity: 0.6;
}

/* Specialty Items (Our Specialties Section) */
.specialty-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(200, 168, 106, 0.2);
    transition: all 0.4s ease;
}

.specialty-item:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 168, 106, 0.4);
    box-shadow: 0 16px 48px rgba(200, 168, 106, 0.2);
}

.specialty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.specialty-item:hover .specialty-image {
    transform: scale(1.1);
}

.specialty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 15, 20, 0.95), transparent);
    padding: 24px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.specialty-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #C8A86A;
    margin: 0 0 4px 0;
}

.specialty-overlay p {
    font-size: 14px;
    color: #F2EBDD;
    opacity: 0.8;
    margin: 0;
}

.view-gallery-cta {
    text-align: center;
    margin-top: 48px;
}

.view-gallery-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
}

.view-gallery-cta .btn svg {
    transition: transform 0.3s ease;
}

.view-gallery-cta .btn:hover svg {
    transform: translateX(4px);
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: rgba(26, 35, 50, 0.2);
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.process-list li {
    color: #F2EBDD;
    font-size: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(200, 168, 106, 0.15);
    line-height: 1.7;
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li strong {
    color: #C8A86A;
    margin-right: 16px;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.compliance-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 17px;
    color: #F2EBDD;
    line-height: 1.8;
    opacity: 0.9;
}

.address-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    color: #F2EBDD;
    font-size: 15px;
    padding: 32px;
    background: rgba(27, 36, 48, 0.5);
    border: 1px solid rgba(200, 168, 106, 0.2);
    border-radius: 16px;
    line-height: 1.8;
}

.address-box strong {
    color: #C8A86A;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: rgba(26, 35, 50, 0.2);
}

.contact-description {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 16px;
    color: #F2EBDD;
    line-height: 1.8;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.email-text {
    text-align: center;
    color: #F2EBDD;
    font-size: 16px;
    opacity: 0.9;
}

.email-text a {
    color: #C8A86A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-text a:hover {
    color: #e5d499;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(200, 168, 106, 0.15);
    text-align: center;
}

.footer p {
    color: #F2EBDD;
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 8px;
    }
    
    .navbar {
        top: 8px;
        left: 8px;
        right: 8px;
        padding: 12px 16px;
    }
    
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 16px);
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 48px 36px;
        max-width: 95%;
        border-radius: 28px;
        border-width: 2px;
    }

    .section-title {
        font-size: 36px;
    }

    .pillars-grid,
    .trade-grid {
        grid-template-columns: 1fr;
    }

    .floating-gem {
        opacity: 0.5;
    }

    .gem-1 {
        width: 180px;
    }

    .gem-2 {
        width: 150px;
    }

    .gem-3 {
        width: 160px;
    }

    .gem-4 {
        width: 140px;
    }

    .gem-5 {
        width: 155px;
    }
    
    .gem-6 {
        width: 135px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-buttons .btn-large {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .globe-container {
        width: 120px;
        height: 120px;
        bottom: 30px;
        right: 30px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #fff;
}

/* WhatsApp Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #0B1420 0%, #1B2430 100%);
    margin: 5% auto;
    padding: 40px;
    border: 2px solid rgba(200, 168, 106, 0.3);
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #C8A86A;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #e5d499;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #C8A86A;
    text-align: center;
    margin-bottom: 12px;
}

.modal-subtitle {
    text-align: center;
    color: #F2EBDD;
    font-size: 15px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.whatsapp-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.whatsapp-card {
    background: rgba(27, 36, 48, 0.5);
    border: 1px solid rgba(200, 168, 106, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 168, 106, 0.3);
    box-shadow: 0 12px 40px rgba(200, 168, 106, 0.1);
}

.country-flag {
    font-size: 48px;
    margin-bottom: 16px;
}

.whatsapp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #C8A86A;
    margin-bottom: 8px;
}

.phone-number {
    font-size: 18px;
    font-weight: 500;
    color: #F2EBDD;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.qr-code {
    background: white;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 24px;
}

.qr-code img {
    display: block;
    width: 150px;
    height: 150px;
}

.btn-whatsapp {
    width: 100%;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 28px;
    }

    .whatsapp-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .country-flag {
        font-size: 40px;
    }

    .whatsapp-card h3 {
        font-size: 20px;
    }

    .phone-number {
        font-size: 16px;
    }

    .qr-code img {
        width: 120px;
        height: 120px;
    }
}

/* Contact Form Modal */
.modal-content-form {
    max-width: 700px;
}

.contact-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #C8A86A;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(27, 36, 48, 0.6);
    border: 1px solid rgba(200, 168, 106, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #F2EBDD;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C8A86A;
    background: rgba(27, 36, 48, 0.8);
    box-shadow: 0 0 0 3px rgba(200, 168, 106, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(242, 235, 221, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 32px;
    text-align: center;
}

.btn-submit {
    min-width: 200px;
    padding: 14px 32px;
    font-size: 16px;
}

.form-note {
    color: rgba(242, 235, 221, 0.6);
    font-size: 13px;
    margin-top: 16px;
}

/* Form Messages */
.form-message {
    text-align: center;
    padding: 40px 20px;
}

.form-message svg {
    margin-bottom: 20px;
}

.form-success svg {
    stroke: #13B981;
}

.form-error svg {
    stroke: #ef4444;
}

.form-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #C8A86A;
    margin-bottom: 12px;
}

.form-message p {
    color: #F2EBDD;
    font-size: 15px;
    opacity: 0.9;
}

/* Mobile Form Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: rgba(26, 35, 50, 0.2);
}

.gallery-subtitle {
    text-align: center;
    color: #F2EBDD;
    font-size: 16px;
    margin-bottom: 48px;
    opacity: 0.8;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(27, 36, 48, 0.5);
    border: 1px solid rgba(200, 168, 106, 0.2);
    border-radius: 24px;
    color: #F2EBDD;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(200, 168, 106, 0.4);
    background: rgba(27, 36, 48, 0.7);
}

.filter-btn.active {
    background: #C8A86A;
    color: #0B0F14;
    border-color: #C8A86A;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.gallery-item {
    background: rgba(27, 36, 48, 0.5);
    border: 1px solid rgba(200, 168, 106, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 168, 106, 0.3);
    box-shadow: 0 16px 48px rgba(200, 168, 106, 0.15);
}

.gallery-item-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: rgba(11, 15, 20, 0.5);
}

.gallery-item-content {
    padding: 20px;
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #C8A86A;
    margin-bottom: 8px;
}

.gallery-item-description {
    color: #F2EBDD;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 12px;
}

.gallery-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(200, 168, 106, 0.1);
}

/* Gallery Image Container */
.gallery-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(11, 15, 20, 0.5);
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 15, 20, 0.95), transparent);
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #C8A86A;
    margin: 0 0 4px 0;
}

.gallery-overlay .category {
    font-size: 13px;
    color: #F2EBDD;
    opacity: 0.7;
    margin: 0;
}

/* Gallery Info */
.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #C8A86A;
    margin: 0 0 8px 0;
}

.gallery-info .price-range {
    font-size: 14px;
    color: #C8A86A;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.gallery-info .description {
    font-size: 14px;
    color: #F2EBDD;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Loading & Error States */
.gallery-loading,
.loading,
.error,
.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #F2EBDD;
    opacity: 0.6;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(200, 168, 106, 0.1);
    border-top-color: #C8A86A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pagination */
.pagination-container {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    padding: 10px 18px;
    background: rgba(27, 36, 48, 0.5);
    border: 1px solid rgba(200, 168, 106, 0.2);
    border-radius: 8px;
    color: #F2EBDD;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(.active) {
    border-color: rgba(200, 168, 106, 0.4);
    background: rgba(27, 36, 48, 0.7);
}

.pagination-btn.active {
    background: #C8A86A;
    color: #0B0F14;
    border-color: #C8A86A;
    cursor: default;
}

.pagination-dots {
    color: #F2EBDD;
    opacity: 0.4;
    padding: 0 4px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #C8A86A;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3001;
}

.lightbox-close:hover {
    color: #F2EBDD;
    transform: rotate(90deg);
}

.lightbox-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(135deg, #0B1420 0%, #1B2430 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(200, 168, 106, 0.3);
    animation: slideUp 0.4s ease;
}

#lightbox-img {
    width: 50%;
    max-height: 70vh;
    object-fit: cover;
}

.lightbox-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #C8A86A;
    margin: 0 0 16px 0;
}

.lightbox-status,
.status-badge {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-available {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-sold {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.status-reserved {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.lightbox-price {
    font-size: 20px;
    color: #C8A86A;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.lightbox-info p {
    color: #F2EBDD;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0 0 32px 0;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .lightbox-content {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    #lightbox-img {
        width: 100%;
        max-height: 50vh;
    }
    
    .lightbox-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox.active {
        padding: 20px;
    }
}

.gallery-item-category {
    font-size: 12px;
    color: #C8A86A;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item-status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.status-available {
    background: rgba(19, 185, 129, 0.2);
    color: #13B981;
}

.status-sold {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-reserved {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(200, 168, 106, 0.2);
    border-top-color: #C8A86A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.gallery-loading p {
    color: #F2EBDD;
    font-size: 15px;
    opacity: 0.7;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #F2EBDD;
    opacity: 0.7;
}

/* Gallery Mobile Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}