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

:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-brown: #8b4a1a;
    --accent-gold: #d4af37;
    --text-light: #e8e8e8;
    --text-gold: #ffd700;
    --mountain-blue: #2c3e50;
    --stone-gray: #5d6d7e;
    --earth-brown: #8b4513;
    --crystal-purple: #9b59b6;
    --gradient-mountain: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #5d6d7e 100%);
    --gradient-earth: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(52, 73, 94, 0.4) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--text-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-earth);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-gold);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.1), rgba(15, 15, 30, 0.2)), url('cave-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 74, 26, 0.1) 0%, transparent 50%);
}

.mountain-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 100%);
}

.crystal-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.crystal-particles::before,
.crystal-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--text-gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px var(--text-gold);
}

.crystal-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.crystal-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-light);
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-earth);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-gold);
    border: 2px solid var(--text-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background: var(--text-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 74, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.museum-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover .museum-photo {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 74, 26, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Featured Exhibit */
.featured-exhibit {
    padding: 100px 0;
    background: var(--gradient-mountain);
    position: relative;
    overflow: hidden;
}

.featured-exhibit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('rocky-terrain.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.exhibit-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.exhibit-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.exhibit-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exhibit-showcase {
    max-width: 500px;
    margin: 0 auto;
}

.exhibit-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.specimen-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.specimen-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
}

.specimen-label h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-gold);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.specimen-label p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Collections Section */
.collections-section {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
}

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

.collection-item {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.6) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 74, 26, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--text-gold);
}

.collection-item:hover::before {
    opacity: 1;
}

.collection-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.collection-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.collection-item p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Statistics Section */
.statistics-section {
    padding: 100px 0;
    background: var(--gradient-earth);
    position: relative;
}

.statistics-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Visit Section */
.visit-section {
    padding: 100px 0;
    background: var(--secondary-dark);
    position: relative;
}

.visit-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-item {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(44, 62, 80, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--text-gold);
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--text-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(139, 74, 26, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gold);
}

.price-label {
    color: var(--text-light);
    font-weight: 500;
}

.free-entry {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 15px;
}

.visit-cta {
    text-align: center;
    background: var(--gradient-mountain);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.visit-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-gold);
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

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

.contact-item {
    background: rgba(44, 62, 80, 0.6);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--text-gold);
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--text-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--gradient-mountain);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-text {
    font-size: 1.2rem;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--mountain-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('mountain-cave.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 74, 26, 0.1) 0%, transparent 50%);
}

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

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 1));
    transform: scale(1.05);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    letter-spacing: 1px;
}

.footer-tagline {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-card {
    background: rgba(44, 62, 80, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.footer-card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-note {
    font-size: 0.9rem;
    color: var(--text-gold);
    font-weight: 600;
    margin-top: 10px !important;
}

.footer-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--text-gold) 50%, transparent 100%);
    margin: 50px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--text-light);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-bottom p:first-child {
    font-weight: 600;
    color: var(--text-gold);
}

.mountain-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        var(--primary-dark) 20%, 
        var(--secondary-dark) 40%, 
        var(--primary-dark) 60%, 
        var(--secondary-dark) 80%, 
        transparent 100%);
    clip-path: polygon(0 100%, 15% 60%, 25% 80%, 35% 40%, 50% 70%, 65% 30%, 75% 60%, 85% 20%, 100% 50%, 100% 100%);
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--gradient-mountain);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        gap: 10px;
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

