/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.fluid-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2em;
}

.fluid-letter {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(100px) scale(0.5);
    animation: fluidRise 1.5s ease-out forwards;
    position: relative;
    display: inline-block;
}

.fluid-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #60a5fa, #3b82f6, #2563eb);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    opacity: 0;
    border-radius: 10px;
    z-index: -1;
}

.fluid-letter:nth-child(1) { animation-delay: 0.1s; }
.fluid-letter:nth-child(2) { animation-delay: 0.2s; }
.fluid-letter:nth-child(3) { animation-delay: 0.3s; }
.fluid-letter:nth-child(4) { animation-delay: 0.4s; }
.fluid-letter:nth-child(5) { animation-delay: 0.5s; }
.fluid-letter:nth-child(6) { animation-delay: 0.6s; }
.fluid-letter:nth-child(7) { animation-delay: 0.7s; }
.fluid-letter:nth-child(8) { animation-delay: 0.8s; }
.fluid-letter:nth-child(9) { animation-delay: 0.9s; }

.fluid-space {
    width: 0.3em;
}

@keyframes fluidRise {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.5) rotateX(90deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.1) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
        opacity: 0.1;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.2;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.1;
    }
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #2563eb;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    padding-right: 2rem;
}

.story-subtitle {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-img:hover {
    transform: scale(1.02);
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: white;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-image {
    order: 1;
}

.process-text {
    order: 2;
    padding-left: 2rem;
}

.process-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-img:hover {
    transform: scale(1.02);
}

/* Quality Section */
.quality-section {
    padding: 120px 0;
    background: #f8fafc;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-text {
    padding-right: 2rem;
}

.quality-image {
    position: relative;
}

.quality-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quality-img:hover {
    transform: scale(1.02);
}

/* Final Story */
.final-story {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-description {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 120px 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.product-card.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.minerals h4 {
    font-size: 1.1rem;
    color: #2563eb;
    margin-bottom: 1rem;
    text-align: center;
}

.mineral-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mineral-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.mineral-name {
    color: #666;
    font-size: 0.9rem;
}

.mineral-value {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-cta {
    text-align: center;
}

/* Quality Reports */
.quality-reports {
    padding: 120px 0;
    background: white;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.quality-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.quality-item.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.quality-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.quality-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quality-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* WhatsApp Sticky Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a1a1aa;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content,
    .process-content,
    .quality-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-text,
    .process-text,
    .quality-text,
    .contact-info {
        padding: 0;
    }
    
    .process-image {
        order: 2;
    }
    
    .process-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    
    
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .fluid-letter {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-section,
    .process-section,
    .quality-section,
    .products-section,
    .quality-reports,
    .contact-section {
        padding: 80px 0;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Smooth scrolling and performance optimizations */
* {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Hide carousel nav buttons per request */
.carousel-prev,
.carousel-next {
    display: none !important;
}

/* Preloader removed */

/* Hero: blur background video and remove dark overlay */
.hero-video video {
    filter: none !important;
    transform: none !important;
}
.hero-overlay {
    display: none;
}

/* Logo: make circular and square dimensions */
.logo-img {
    width: 120px;
    height: 80px;
    border-radius: 0;
    object-fit: cover;
}
.footer-logo-img {
    width: 140px;
    height: 88px;
    border-radius: 0;
    object-fit: cover;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        width: 95px;
        height: 62px;
    }
    .footer-logo-img {
        width: 110px;
        height: 70px;
    }
}

@media (min-width: 1200px) {
    .logo-img {
        width: 150px;
        height: 95px;
    }
    .footer-logo-img {
        width: 165px;
        height: 100px;
    }
}

/* Gallery: auto-adjust to media sizes */
.carousel {
    aspect-ratio: unset;
    max-width: 100%;
    max-height: 80vh;
}
.fluid-letter::before {
    display: none !important;
}
.fluid-letter {
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
}
.fluid-text {
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: baseline;
    gap: 0.08em;
}
.fluid-space {
    display: inline-block;
    width: 0.6em;
}
.carousel-track {
    display: flex;
    align-items: center;
}
.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

/* Media Gallery */
.media-gallery-section {
    padding: 100px 0;
    background: #f8fafc;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 1 / 1; /* Instagram-style square */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0,0,0,0.6);
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
}

.carousel-dot.active {
    background: #2563eb;
}

@media (max-width: 768px) {
    .carousel {
        max-width: 100%;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
    text-align: left;
}

.about-text p {
    margin-bottom: 1rem;
    color: #444;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 1rem;
}

.highlight {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.about-aside .about-block {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.values {
    margin-top: 40px;
}

.values-title {
    text-align: center;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.value-item i {
    font-size: 1.6rem;
    color: #2563eb;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .values-grid { grid-template-columns: 1fr; }
}
/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #ffffff;
}

.stats-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.stats-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.5px;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: #4b5563;
}

.quality-highlights {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.quality-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1e40af;
    border: 1px solid #e0e7ff;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}
/* Availability Banner */
.availability-section {
    padding: 80px 0;
    background: #f9fafb;
}

.availability-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.availability-wrap {
    display: flex;
    justify-content: center;
}

.availability-img {
    max-width: 100%;
    width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .availability-img { width: 100%; }
}
