* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a1929;
    --primary-blue: #1a365d;
    --dark-blue: #0d1b2a;
    --gold: #d4af37;
    --light-gold: #f4d03f;
    --orange: #f39c12;
    --white: #ffffff;
    --light-bg: #f5f5dc;
    --beige-bg: #faf8f3;
    --text-dark: #2c3e50;
    --red-border: #c0392b;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-dark);
}

/* Header Styles */
header {
    background-color: var(--primary-dark);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section h1 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.logo-section p {
    font-size: 0.85rem;
    color: var(--white);
    font-family: Arial, sans-serif;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: Arial, sans-serif;
}

nav ul li a:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-call {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Arial, sans-serif;
}

.btn-visit {
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

.btn-visit:hover {
    background-color: var(--light-gold);
}

/* Hero Section */
.hero {
    background: #0d1b2a;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 20, 20, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 35% 45%, rgba(20, 255, 20, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 55% 15%, rgba(20, 20, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 90% 35%, rgba(255, 30, 30, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 25% 75%, rgba(30, 255, 30, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 65% 85%, rgba(30, 30, 255, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 5% 50%, rgba(255, 0, 0, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 45% 30%, rgba(0, 255, 0, 0.3) 3px, transparent 3px);
    background-size: 200px 200px, 250px 250px, 180px 180px, 220px 220px, 240px 240px, 200px 200px, 260px 260px, 190px 190px, 210px 210px, 230px 230px;
    background-position: 0 0, 50px 100px, 100px 200px, 150px 300px, 200px 50px, 250px 150px, 300px 250px, 350px 350px, 400px 100px, 450px 200px;
    padding: 3rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
}

.hero-stats {
    max-width: 1000px;
    margin: 3rem auto 0;
    z-index: 2;
}

.badge {
    display: inline-block;
    background-color: rgba(26, 26, 26, 0.8);
    color: var(--gold);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
    font-weight: 500;
}

.badge::before {
    content: "★ ";
    margin-right: 0.3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--light-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: 5px;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

/* Statistics Section - Now inside hero */
.hero-stats {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.4rem;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.scroll-indicator {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gold);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section Styles */
.about-section {
    background-color: var(--beige-bg);
    padding: 3rem 2rem;
    border-top: 2px solid var(--red-border);
    border-bottom: 2px solid var(--red-border);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.about-text h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-family: 'Georgia', serif;
}

.about-text h1 .gold {
    color: var(--gold);
}

.about-text p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-family: Arial, sans-serif;
}

.store-box {
    background-color: #e8e8e8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.store-box h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.store-box p {
    color: var(--text-dark);
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--gold);
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: Arial, sans-serif;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

/* Gemstones Section */
.gemstones-section {
    background-color: var(--dark-blue);
    padding: 3rem 2rem;
}

.gemstones-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    font-size: 0.9rem;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.section-header h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.section-header h1 .gold {
    color: var(--light-gold);
}

.section-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.gemstones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Slider Styles */
.gemstones-slider-wrapper {
    position: relative;
    margin-bottom: 4rem;
}

.gemstones-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gemstones-slider::-webkit-scrollbar {
    display: none;
}

.gemstones-slider .gem-card {
    min-width: calc(25% - 1.5rem);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--gold);
    color: var(--primary-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -25px;
}

.slider-next {
    right: -25px;
}

/* Also Available Section */
.also-available-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.also-available-section h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Georgia', serif;
}

.also-available-gems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.available-gem-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: Arial, sans-serif;
}

.available-gem-item:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Modal Styles */
.gem-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.gem-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gem-modal-content {
    background-color: var(--dark-blue);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.modal-gem-image {
    width: 100%;
    height: 300px;
    background: #000;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--gold);
}

.modal-gem-content h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
}

.modal-gem-content p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
}

.modal-inquire-btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
}

.modal-inquire-btn:hover {
    background-color: var(--light-gold);
}

.gem-card {
    background-color: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.gem-image {
    width: 100%;
    height: 300px;
    background: #000000;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gem-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Ruby - Using actual image */
.gem-image.ruby {
    background: #000000;
    background-image: url('images/ruby.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gem-image.ruby::before {
    display: none;
}

/* Emerald - Using actual image */
.gem-image.emerald {
    background: #000000;
    background-image: url('images/emerald.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gem-image.emerald::before {
    display: none;
}

/* Sapphire - Using actual image */
.gem-image.sapphire {
    background: #000000;
    background-image: url('images/sapphire.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gem-image.sapphire::before {
    display: none;
}

/* Diamond - Using actual image */
.gem-image.diamond {
    background: #000000;
    background-image: url('images/diamond.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gem-image.diamond::before {
    display: none;
}

/* Pearl - White/cream with iridescent effect */
.gem-image.pearl {
    background: #000000;
    background-image: 
        radial-gradient(ellipse 60% 50% at 75% 70%, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 250, 240, 0.95) 10%,
            rgba(240, 235, 220, 0.85) 25%,
            rgba(220, 215, 200, 0.7) 40%,
            rgba(200, 195, 180, 0.5) 60%,
            rgba(180, 175, 160, 0.3) 80%,
            transparent 100%
        ),
        radial-gradient(ellipse 40% 30% at 30% 40%, 
            rgba(255, 255, 255, 0.4) 0%,
            transparent 60%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.pearl::before {
    display: none;
}

/* Topaz - Blue with depth */
.gem-image.topaz {
    background: #000000;
    background-image: 
        radial-gradient(ellipse 70% 55% at 75% 70%, 
            rgba(255, 255, 255, 1) 0%,
            rgba(180, 220, 255, 0.9) 12%,
            rgba(120, 180, 240, 0.8) 25%,
            rgba(80, 140, 220, 0.7) 40%,
            rgba(50, 100, 200, 0.6) 55%,
            rgba(30, 70, 160, 0.4) 75%,
            transparent 100%
        ),
        radial-gradient(ellipse 35% 25% at 25% 35%, 
            rgba(150, 200, 255, 0.5) 0%,
            transparent 70%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.topaz::before {
    display: none;
}

/* Amethyst - Purple/violet with rich depth */
.gem-image.amethyst {
    background: #000000;
    background-image: 
        radial-gradient(ellipse 70% 55% at 75% 70%, 
            rgba(255, 255, 255, 1) 0%,
            rgba(240, 200, 255, 0.95) 12%,
            rgba(200, 150, 240, 0.85) 25%,
            rgba(160, 100, 220, 0.75) 40%,
            rgba(140, 80, 200, 0.65) 55%,
            rgba(120, 60, 180, 0.45) 75%,
            transparent 100%
        ),
        radial-gradient(ellipse 35% 25% at 30% 40%, 
            rgba(200, 150, 255, 0.5) 0%,
            transparent 70%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.amethyst::before {
    display: none;
}

/* Garnet - Deep red with warmth */
.gem-image.garnet {
    background: #000000;
    background-image: 
        radial-gradient(ellipse 70% 55% at 75% 70%, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 180, 180, 0.95) 12%,
            rgba(255, 120, 120, 0.85) 25%,
            rgba(240, 80, 80, 0.75) 40%,
            rgba(220, 40, 40, 0.65) 55%,
            rgba(180, 20, 20, 0.45) 75%,
            transparent 100%
        ),
        radial-gradient(ellipse 35% 25% at 25% 35%, 
            rgba(255, 150, 150, 0.5) 0%,
            transparent 70%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.garnet::before {
    display: none;
}

/* Opal - Iridescent with play of color */
.gem-image.opal {
    background: #000000;
    background-image: 
        radial-gradient(ellipse 70% 55% at 75% 70%, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 240, 240, 0.95) 10%,
            rgba(240, 220, 255, 0.85) 20%,
            rgba(220, 240, 255, 0.75) 30%,
            rgba(240, 255, 240, 0.65) 40%,
            rgba(255, 255, 240, 0.55) 50%,
            rgba(200, 200, 200, 0.4) 70%,
            transparent 100%
        ),
        radial-gradient(ellipse 40% 30% at 30% 40%, 
            rgba(255, 255, 255, 0.6) 0%,
            transparent 60%
        ),
        radial-gradient(ellipse 30% 20% at 60% 50%, 
            rgba(200, 220, 255, 0.4) 0%,
            transparent 50%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.opal::before {
    display: none;
}

/* Turquoise - Blue-green with vibrant color */
.gem-image.turquoise {
    background: #000000;
    background-image: 
        radial-gradient(ellipse 70% 55% at 75% 70%, 
            rgba(255, 255, 255, 1) 0%,
            rgba(180, 255, 240, 0.95) 12%,
            rgba(120, 240, 220, 0.85) 25%,
            rgba(80, 220, 200, 0.75) 40%,
            rgba(50, 200, 180, 0.65) 55%,
            rgba(30, 160, 150, 0.45) 75%,
            transparent 100%
        ),
        radial-gradient(ellipse 35% 25% at 25% 35%, 
            rgba(150, 240, 230, 0.5) 0%,
            transparent 70%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.turquoise::before {
    display: none;
}

/* Coral - Pink-orange-red with warmth */
.gem-image.coral {
    background: #000000;
    background-image: 
        radial-gradient(ellipse 70% 55% at 75% 70%, 
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 200, 180, 0.95) 12%,
            rgba(255, 160, 140, 0.85) 25%,
            rgba(255, 120, 100, 0.75) 40%,
            rgba(255, 80, 60, 0.65) 55%,
            rgba(220, 60, 40, 0.45) 75%,
            transparent 100%
        ),
        radial-gradient(ellipse 35% 25% at 25% 35%, 
            rgba(255, 180, 160, 0.5) 0%,
            transparent 70%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.coral::before {
    display: none;
}

/* Cat's Eye - Golden-yellow with chatoyancy effect */
.gem-image.catseye {
    background: #000000;
    background-image: 
        linear-gradient(90deg, 
            transparent 0%,
            transparent 45%,
            rgba(255, 255, 255, 1) 48%,
            rgba(255, 240, 180, 0.95) 49%,
            rgba(255, 220, 120, 0.9) 50%,
            rgba(255, 240, 180, 0.95) 51%,
            rgba(255, 255, 255, 1) 52%,
            transparent 55%,
            transparent 100%
        ),
        radial-gradient(ellipse 70% 55% at 75% 70%, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 240, 180, 0.7) 15%,
            rgba(255, 220, 140, 0.6) 30%,
            rgba(255, 200, 100, 0.5) 45%,
            rgba(240, 180, 80, 0.4) 60%,
            rgba(220, 160, 60, 0.25) 80%,
            transparent 100%
        );
    background-size: cover;
    background-position: center;
}

.gem-image.catseye::before {
    display: none;
}


.gem-card-content {
    padding: 1.5rem;
}

.gem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.gem-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    font-family: Arial, sans-serif;
}

.gem-link {
    color: var(--light-gold);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    font-family: Arial, sans-serif;
}

.gem-link:hover {
    color: var(--gold);
}

/* Services Section */
.services-section {
    background-color: var(--beige-bg);
    padding: 3rem 2rem;
    border-top: 2px solid var(--red-border);
    border-bottom: 2px solid var(--red-border);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-header .subtitle {
    font-size: 0.9rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.services-header h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-blue);
}

.services-header h1 .gold {
    color: var(--orange);
}

.services-header p {
    font-size: 0.95rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: Arial, sans-serif;
}

.service-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-family: Arial, sans-serif;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background-color: #ffd700;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: Arial, sans-serif;
}

/* Contact Section */
.contact-section {
    background-color: var(--beige-bg);
    padding: 3rem 2rem;
    border-top: 2px solid var(--red-border);
    border-bottom: 2px solid var(--red-border);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header .subtitle {
    font-size: 0.9rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.contact-header h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.contact-header h1 .gold {
    color: var(--orange);
}

.contact-header p {
    font-size: 0.95rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: Arial, sans-serif;
}

.contact-card p {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.map-container {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta-section {
    background-color: var(--beige-bg);
    padding: 3rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--dark-blue);
    padding: 2.5rem;
    border-radius: 15px;
}

.cta-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--light-gold);
    font-family: 'Georgia', serif;
    font-weight: normal;
}

.cta-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: Arial, sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--orange) 0%, var(--light-gold) 100%);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: bold;
    transition: transform 0.3s;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.btn-gradient:hover {
    transform: translateY(-2px);
}

.btn-border {
    background-color: var(--dark-blue);
    color: var(--light-gold);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: 5px;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Georgia', serif;
}

.btn-border:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    padding: 4rem 2rem 2rem;
    border-top: 2px solid var(--gold);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo-icon {
    font-size: 2rem;
    color: var(--gold);
}

.footer-logo-text {
    font-size: 1.5rem;
    color: var(--gold);
    font-family: 'Georgia', serif;
}

.footer-logo p {
    color: var(--light-gold);
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    margin-left: 3rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-nav ul li a {
    color: var(--light-gold);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: Arial, sans-serif;
}

.footer-nav ul li a:hover {
    color: var(--gold);
}

.footer-address {
    text-align: right;
}

.footer-address p {
    color: var(--light-gold);
    font-size: 1rem;
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .gemstones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gemstones-slider .gem-card {
        min-width: calc(33.333% - 1.5rem);
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-gem-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .gemstones-grid {
        grid-template-columns: 1fr;
    }
    
    .gemstones-slider .gem-card {
        min-width: calc(50% - 1rem);
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .also-available-gems {
        gap: 1rem;
    }
    
    .available-gem-item {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .modal-gem-content {
        padding: 2rem;
    }
    
    .modal-gem-image {
        height: 250px;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gemstones-slider .gem-card {
        min-width: calc(100% - 1rem);
    }
    
    .available-gem-item {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

