/* Root Variables */
:root {
    --primary-color: #0a1128;
    --secondary-color: #1c2541;
    --accent-color: #d4af37;
    --gold: #d4af37;
    --gold-light: #f4e5c3;
    --navy: #0a1128;
    --navy-light: #1c2541;
    --text-dark: #0a1128;
    --text-light: #5a6f8f;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 10px 40px rgba(10, 17, 40, 0.15);
    --shadow-hover: 0 20px 50px rgba(10, 17, 40, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fafafa;
    opacity: 0;
    animation: pageLoad 0.8s ease forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.top-bar {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--gold);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.navbar {
    padding: 10px 0;
}

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

.logo h1 {
    font-size: 28px;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.logo .tagline {
    font-size: 11px;
    color: var(--gold);
    margin-top: -3px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--gold-light);
    color: var(--navy);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 15px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--navy);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: kenBurns 10s ease-out;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-content {
    color: white;
    max-width: 700px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
    font-weight: 700;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.2s backwards;
    color: var(--gold-light);
    font-weight: 500;
}

.hero-text {
    font-size: 19px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s backwards;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.hero-indicator.active {
    background: var(--gold);
    width: 35px;
    border-radius: 6px;
}

.hero-indicator:hover {
    background: var(--gold-light);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: var(--gold-light);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Georgia', serif;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    top: -2px;
}

.title-underline::before {
    left: -15px;
}

.title-underline::after {
    right: -15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--bg-light), white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="%23d4af37" opacity="0.02"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 34px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Georgia', serif;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.about-text .highlight {
    font-size: 20px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--gold);
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.about-text p:nth-of-type(1) { animation-delay: 0.4s; }
.about-text p:nth-of-type(2) { animation-delay: 0.5s; }
.about-text p:nth-of-type(3) { animation-delay: 0.6s; }

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, var(--gold-light), transparent);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.feature-item:hover::after {
    height: 50%;
}

.feature-item i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    animation: zoomIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.service-card:hover .service-icon::before {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    inset: -10px;
}

.service-icon i {
    font-size: 36px;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(360deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Products Section */
.products {
    background: linear-gradient(to bottom, white, var(--bg-light));
    position: relative;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.product-card-clickable {
    cursor: pointer;
    position: relative;
}

.product-card-clickable::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.product-card-clickable:hover::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

.product-content h3 i {
    font-size: 20px;
    margin-left: 10px;
    transition: var(--transition);
}

.product-card-clickable:hover .product-content h3 i {
    transform: translateX(5px);
}

.learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.product-card-clickable:hover .learn-more-btn {
    background: var(--gold);
    color: var(--navy);
}

.learn-more-btn i {
    transition: var(--transition);
}

.product-card-clickable:hover .learn-more-btn i {
    transform: translateX(5px);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    background: rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(2px);
}

.product-card:hover .product-overlay i {
    transform: scale(1.2) rotate(360deg);
}

.product-image i {
    font-size: 80px;
    color: var(--gold);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Georgia', serif;
    position: relative;
    padding-bottom: 10px;
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-light);
}

.product-features i {
    color: var(--gold);
    margin-right: 10px;
}

/* Gemstone Showcase Section */
.gemstone-showcase {
    padding: 80px 0;
    background: white;
}

.gemstone-colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gemstone-color-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    animation: zoomIn 0.8s ease forwards;
    text-decoration: none;
    display: block;
    position: relative;
}

.gemstone-color-card:nth-child(1) { animation-delay: 0.1s; }
.gemstone-color-card:nth-child(2) { animation-delay: 0.2s; }
.gemstone-color-card:nth-child(3) { animation-delay: 0.3s; }
.gemstone-color-card:nth-child(4) { animation-delay: 0.4s; }
.gemstone-color-card:nth-child(5) { animation-delay: 0.5s; }
.gemstone-color-card:nth-child(6) { animation-delay: 0.6s; }
.gemstone-color-card:nth-child(7) { animation-delay: 0.7s; }
.gemstone-color-card:nth-child(8) { animation-delay: 0.8s; }

.gemstone-color {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gemstone-color::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.gemstone-color-card:hover .gemstone-color::before {
    animation: shine 1.5s ease-in-out;
}

.gemstone-color i {
    font-size: 48px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.gemstone-color-card:hover .gemstone-color {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gemstone-color-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.gemstone-color-card p {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.gemstone-color-card .click-hint {
    display: block;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 8px;
    opacity: 0;
    transition: var(--transition);
}

.gemstone-color-card:hover .click-hint {
    opacity: 1;
}

/* Gemstones Page Specific Styles */
.gemstone-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 100px 0 70px;
    margin-top: 70px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gemstone-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="%23d4af37" opacity="0.05"/></svg>');
    opacity: 0.3;
}

.gemstone-hero-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.gemstone-hero-subtitle {
    font-size: 20px;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.gemstone-properties-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.gemstone-detail-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.gemstone-detail-card:hover {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-hover);
}

.gemstone-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--gold);
}

.gemstone-detail-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold);
    flex-shrink: 0;
}

.gemstone-detail-icon i {
    font-size: 48px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gemstone-detail-title h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.gemstone-subtitle {
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
}

.gemstone-detail-content {
    display: grid;
    gap: 30px;
}

.gemstone-highlight-box {
    background: linear-gradient(135deg, var(--gold-light), white);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.gemstone-highlight-box h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.gemstone-highlight-box p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

.gemstone-properties-list h4 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.gemstone-properties-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gemstone-properties-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    line-height: 1.6;
}

.gemstone-properties-list i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
}

.gemstone-legend {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--navy);
}

.gemstone-legend h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.gemstone-legend h4 i {
    color: var(--gold);
    margin-right: 10px;
}

.gemstone-legend p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.sapphire-icon {
    background: linear-gradient(135deg, #0f52ba, #000080);
}

.emerald-icon {
    background: linear-gradient(135deg, #50c878, #00693e);
}

.citrine-icon {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.amethyst-icon {
    background: linear-gradient(135deg, #9966cc, #663399);
}

.topaz-icon {
    background: linear-gradient(135deg, #ffb347, #ff6961);
}

/* Gemstone CTA Section */
.gemstone-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.gemstone-cta h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.gemstone-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Gemstone Properties Section */
.gemstone-properties {
    padding: 80px 0;
    background: var(--bg-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.property-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.property-card:nth-child(1) { animation-delay: 0.2s; }
.property-card:nth-child(2) { animation-delay: 0.4s; }
.property-card:nth-child(3) { animation-delay: 0.6s; }

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.property-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    transition: var(--transition);
}

.ruby-icon {
    background: linear-gradient(135deg, #dc143c, #8b0000);
}

.aquamarine-icon {
    background: linear-gradient(135deg, #7fffd4, #40e0d0);
}

.turquoise-icon {
    background: linear-gradient(135deg, #40e0d0, #008080);
}

.property-icon i {
    font-size: 36px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.property-card:hover .property-icon {
    transform: scale(1.1) rotate(360deg);
}

.property-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.property-highlight {
    text-align: center;
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.property-list {
    list-style: none;
    padding: 0;
}

.property-list li {
    padding: 12px 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.property-list i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 16px;
}

.view-all-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn-wrapper .btn {
    padding: 15px 40px;
    font-size: 18px;
}

.view-all-btn-wrapper .btn i {
    margin-right: 10px;
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden;
}

.quality-assurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="%23d4af37" opacity="0.05"/></svg>');
    opacity: 0.3;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quality-text h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.quality-highlight {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.quality-features {
    list-style: none;
}

.quality-features li {
    padding: 15px 0;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quality-features i {
    font-size: 24px;
    color: var(--gold);
}

.quality-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-mockup {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--gold);
    position: relative;
}

.certificate-mockup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--gold);
    border-radius: 25px;
}

.certificate-mockup i {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 20px;
}

.certificate-mockup p {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.certificate-mockup span {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 280px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0);
    transition: var(--transition);
}

.gallery-item:hover::before {
    background: rgba(212, 175, 55, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
    border: 3px solid var(--gold);
}

.gallery-item i {
    font-size: 70px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--gold);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.gallery-item p {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="%23d4af37" opacity="0.05"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(212, 175, 55, 0.3);
}

.stat-icon i {
    font-size: 36px;
    color: var(--gold);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.stat-number::after {
    content: '+';
    margin-left: 5px;
}

.stat-card p {
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--bg-light);
}

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

.reason-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }
.reason-card:nth-child(5) { animation-delay: 0.5s; }
.reason-card:nth-child(6) { animation-delay: 0.6s; }

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.reason-card p {
    color: var(--text-light);
}

/* Certifications Section */
.certifications {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.certification-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    animation: zoomIn 0.8s ease forwards;
}

.certification-card:nth-child(1) { animation-delay: 0.1s; }
.certification-card:nth-child(2) { animation-delay: 0.2s; }
.certification-card:nth-child(3) { animation-delay: 0.3s; }
.certification-card:nth-child(4) { animation-delay: 0.4s; }

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
}

.cert-icon i {
    font-size: 36px;
    color: var(--gold);
}

.certification-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.certification-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid var(--gold);
    position: relative;
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    border: 3px solid var(--gold);
}

.testimonial-info h4 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 100px 0 70px;
    margin-top: 70px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="%23d4af37" opacity="0.05"/></svg>');
    opacity: 0.3;
}

.contact-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 1;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.contact-info-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
}

.contact-icon-large i {
    font-size: 32px;
    color: var(--gold);
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.contact-info-box p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-box p strong {
    color: var(--navy);
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-left h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-form-main {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-status {
    display: none;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid transparent;
}

.form-status.is-loading,
.form-status.is-success,
.form-status.is-error {
    display: block;
}

.form-status.is-loading {
    background: rgba(10, 17, 40, 0.06);
    border-color: rgba(10, 17, 40, 0.15);
    color: var(--navy);
}

.form-status.is-success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
    color: #166534;
}

.form-status.is-error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #991b1b;
}

#contactSubmitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.btn-large i {
    margin-right: 10px;
}

.contact-sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border-left: 5px solid var(--gold);
}

.contact-sidebar-box h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.contact-sidebar-box h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.contact-sidebar-box p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-features-list {
    list-style: none;
}

.contact-features-list li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.contact-features-list i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 18px;
}

.quick-connect-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-btn {
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    gap: 10px;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1fb855;
    transform: translateX(5px);
}

.call-btn {
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.call-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateX(5px);
}

.email-btn {
    background: #e74c3c;
    color: white;
}

.email-btn:hover {
    background: #c0392b;
    transform: translateX(5px);
}

.social-box .social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.youtube {
    background: #ff0000;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-container {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 3px solid var(--gold);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

.map-placeholder {
    background: white;
    padding: 80px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px dashed var(--gold);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 10px;
}

.map-note {
    font-size: 14px !important;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--gold);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
}

.contact-icon i {
    font-size: 28px;
    color: var(--gold);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.contact-info-card p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    padding: 15px 40px;
    align-self: flex-start;
    border: 2px solid var(--gold);
}

.contact-form .btn-primary:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Georgia', serif;
    color: var(--gold);
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #a0aec0;
}

.footer-section .contact-list i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite, bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
    animation: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: bounce 2s infinite;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gold);
    color: var(--navy);
    animation: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 50px 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 10px;
        background: var(--bg-light);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a i {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        height: 520px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-text {
        font-size: 15px;
    }

    section {
        padding: 55px 0;
    }
    
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
    
    .products-grid,
    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .service-card,
    .reason-card,
    .testimonial-card,
    .contact-info-card {
        padding: 26px 18px;
    }

    .product-content {
        padding: 22px 18px;
    }

    .product-image {
        height: 220px;
    }

    .nav-menu {
        padding: 30px 0;
        gap: 18px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
    }
    
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 32px;
    }
    
    .contact-main-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-main {
        padding: 24px 16px;
    }

    .contact-info-grid {
        gap: 18px;
    }

    .contact-info-box {
        padding: 26px 18px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gemstone-colors-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .gemstone-color {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .hero {
        height: 520px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-text {
        font-size: 14px;
    }
    
    section {
        padding: 46px 0;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 13px 18px;
    }

    .hero-prev,
    .hero-next {
        width: 44px;
        height: 44px;
    }

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

    .title-underline {
        width: 80px;
    }
    
    .contact-hero {
        padding: 80px 0 50px;
    }
    
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-subtitle {
        font-size: 16px;
    }
    
    .contact-form-left h2 {
        font-size: 24px;
    }
    
    .contact-sidebar-box {
        padding: 20px;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
    
    .map-container {
        padding: 10px;
    }
    
    .map-container iframe {
        min-height: 280px;
    }
    
    .quality-text h2 {
        font-size: 28px;
    }
    
    .quality-features li {
        font-size: 16px;
    }
    
    .certificate-mockup {
        padding: 40px 30px;
    }
    
    .certificate-mockup i {
        font-size: 60px;
    }
    
    .certificate-mockup p {
        font-size: 20px;
    }
    
    .gemstone-hero {
        padding: 80px 0 60px;
    }
    
    .gemstone-hero-title {
        font-size: 36px;
    }
    
    .gemstone-detail-card {
        padding: 30px 20px;
    }
    
    .gemstone-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .gemstone-detail-title h2 {
        font-size: 32px;
    }
    
    .gemstone-properties-list ul {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

