* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-login-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* General Section Styles */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(30, 64, 175, 0.4) 100%),
                url('images/hero.webp') center/cover;
    color: var(--white);
    padding: 0;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background-attachment: scroll;
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
}

/* iOS Safari fix for background images */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 30px;
    font-size: 1.05rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s 0.2s backwards;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    display: flex;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: all 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-grid-8 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.feature-grid-8 .feature-card {
    padding: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
}

.feature-grid-8 .feature-icon {
    width: 60px;
    height: 60px;
    margin: 1rem auto 0.8rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-grid-8 .feature-icon i {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    padding: 0 1rem;
    color: var(--text-dark);
}

.feature-grid-8 .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.feature-card p {
    color: var(--text-light);
    padding: 0 1rem 1.5rem;
}

.feature-grid-8 .feature-card p {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
}

@media (max-width: 1200px) {
    .feature-grid-8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-grid-8 .feature-card {
        padding: 1.2rem;
    }
    
    .feature-grid-8 .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-grid-8 .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-grid-8 .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-grid-8 .feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .feature-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-grid-8 .feature-card {
        padding: 1rem;
    }
    
    .feature-grid-8 .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-grid-8 .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-grid-8 .feature-card h3 {
        font-size: 0.9rem;
    }
    
    .feature-grid-8 .feature-card p {
        font-size: 0.8rem;
    }
}

/* Services Section */
.services {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 80px 20px;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Lenses Section */
.lenses {
    padding: 80px 20px;
}

.lenses-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.lenses-features {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.lenses-features.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.lenses-features h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--accent-color);
}

.premium .features-list i {
    color: var(--accent-color);
}

.delivery-info {
    text-align: center;
}

.delivery-card {
    background: var(--accent-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
    max-width: 500px;
}

.delivery-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.delivery-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .navbar .container {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        order: 2;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu .language-switcher {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-login-btn {
        display: inline-block;
        margin: 1rem auto 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: calc(100vh - 70px);
        height: calc(100vh - 70px);
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - 70px);
        height: calc(100vh - 70px);
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .features,
    .services,
    .products,
    .lenses,
    .contact {
        padding: 50px 20px;
    }
}

/* Lenses Hero Section */
.lenses-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Lenses Section Enhanced */
.lenses-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-large {
    grid-column: span 1;
}

.lenses-features.premium-large {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.lenses-features.premium-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.premium-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.lenses-features h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.features-list {
    position: relative;
    z-index: 1;
}

.features-list li {
    padding: 1rem 0;
    font-size: 1.05rem;
}

.features-list strong {
    font-weight: 600;
}

.delivery-badge {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.delivery-badge.standard {
    background: var(--primary-color);
    color: var(--white);
}

.delivery-badge i {
    margin-right: 10px;
}

/* Lens Types Section */
.lens-types {
    padding: 80px 20px;
    background: var(--white);
}

.lens-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.lens-type-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
}

.lens-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.lens-type-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.lens-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.lens-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lens-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.lens-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lens-type-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lens-features {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.lens-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.lens-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Services Grid Update */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Responsive Updates */
@media (max-width: 968px) {
    .lenses-content {
        grid-template-columns: 1fr;
    }
    
    .premium-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .lens-types-grid {
        grid-template-columns: 1fr;
    }
    
    .lenses-features {
        padding: 1.5rem;
    }
    
    .lenses-features h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .premium-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .premium-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
        line-height: 1.5;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .features-list strong {
        display: block;
        width: 100%;
    }
    
    .delivery-badge {
        font-size: 0.95rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .lenses-features {
        padding: 1.2rem;
    }
    
    .lenses-features h3 {
        font-size: 1.2rem;
    }
    
    .premium-desc {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .premium-badge {
        font-size: 0.8rem;
        padding: 5px 14px;
    }
    
    .features-list li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .features-list i {
        font-size: 0.9rem;
        margin-top: 2px;
    }
    
    .delivery-badge {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

/* Processing Gallery Section */
.processing-gallery {
    padding: 80px 20px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 4rem;
    color: var(--white);
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gallery-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.gallery-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Technology Showcase */
.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #bfdbfe;
    transition: all 0.3s;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.tech-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-image {
        height: 240px;
    }
    
    .gallery-overlay i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .gallery-item h3 {
        font-size: 1.2rem;
    }
    
    .gallery-item p {
        font-size: 0.9rem;
    }
}

/* Tech Section */
.tech-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.google-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-logo i {
    font-size: 2rem;
    color: var(--white);
}

.rating-info {
    text-align: left;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.rating-stars .stars {
    color: #fbbc05;
    font-size: 1.3rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card.google-review {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #4285f4;
}

.testimonial-card.google-review:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info .testimonial-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.reviewer-info .stars {
    color: #fbbc05;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
    color: var(--text-light);
    font-size: 0.85rem;
}

.google-badge i {
    color: #4285f4;
    font-size: 1rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn i {
    margin-right: 0.5rem;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .google-rating-summary {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .rating-info {
        text-align: center;
    }
    
    .rating-stars {
        justify-content: center;
    }
    
    .gallery-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .review-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .rating-number {
        font-size: 2rem;
    }
}
.gallery-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 70px;
}

.photo-gallery {
    padding: 80px 20px;
    background: var(--bg-light);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #f3f4f6;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    break-inside: avoid;
    margin-bottom: 2rem;
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.photo-item[data-category="video"] {
    aspect-ratio: 16 / 9;
}

.photo-item[data-category="video"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.photo-item.hidden {
    display: none;
}

/* Video Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.video-wrapper video {
    background: #000;
}

.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0);
    pointer-events: none;
    text-shadow: none;
    transition: all 0.3s;
    display: none;
}

.photo-item:hover .video-badge {
    transform: translate(-50%, -50%) scale(1.2);
    color: rgba(37, 99, 235, 0);
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--primary-color);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
    
    .modal-nav {
        padding: 0 10px;
    }
    
    .modal-prev,
    .modal-next {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/* Map Section */
.map-section {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
}

.map-info-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 400px;
    pointer-events: all;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.map-info-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.map-info-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.map-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.map-info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 3px;
    min-width: 20px;
}

.map-info-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.map-info-content .btn {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-info-content .btn i {
    color: var(--white);
    font-size: 1rem;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-section {
        height: 350px;
        margin-top: 0;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-section {
        height: 300px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 70px;
}

.contact-page {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-intro,
.form-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item-large {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.contact-item-large:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-contact {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.social-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link span {
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select {
    cursor: pointer;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-page .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 80px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-item-large {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-item-large:hover {
        transform: translateY(-5px);
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 50px 20px;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Customer Photos Section */
.customer-photos {
    padding: 80px 20px;
    background: var(--white);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.photos-grid .photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #f3f4f6;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.photos-grid .photo-item[data-category="video"] {
    aspect-ratio: 16 / 9;
}

.photos-grid .photo-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.photos-grid .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.photos-grid .photo-item:hover img {
    transform: scale(1.1);
}

.photos-grid .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(30, 64, 175, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.photos-grid .photo-item:hover .photo-overlay {
    opacity: 1;
}

.photos-grid .photo-overlay i {
    font-size: 3rem;
    color: var(--white);
    animation: zoomPulse 1.5s ease-in-out infinite;
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Responsive Customer Photos */
@media (max-width: 768px) {
    .customer-photos {
        padding: 60px 20px 40px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .customer-photos {
        padding: 50px 20px 30px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .photos-grid .photo-overlay i {
        font-size: 2rem;
    }
}

/* Customer Videos Section */
.customer-videos {
    padding: 80px 20px;
    background: var(--bg-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    background: var(--white);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.video-item .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-item .video-wrapper iframe,
.video-item .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

.video-item .video-wrapper video {
    background: #000;
}

.video-item .video-wrapper video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.9);
}

.video-item .video-wrapper video::-webkit-media-controls-play-button,
.video-item .video-wrapper video::-webkit-media-controls-volume-slider,
.video-item .video-wrapper video::-webkit-media-controls-timeline {
    filter: brightness(1.5);
}

/* Video loading state */
.video-item .video-wrapper video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: -1;
}

/* Responsive Customer Videos */
@media (max-width: 768px) {
    .customer-videos {
        padding: 60px 20px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .customer-videos {
        padding: 50px 20px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Language Switcher */


/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    pointer-events: none;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    animation: fadeInUp 0.5s ease;
    pointer-events: all;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.phone-btn {
    background: linear-gradient(135deg, #4285f4, #1e40af);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.scroll-top-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* Pulse Animation for WhatsApp */
.whatsapp-btn {
    position: relative;
    overflow: visible;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    80%, 100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 20px;
        gap: 10px;
        z-index: 1000;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        right: 12px;
        bottom: 15px;
        gap: 8px;
        z-index: 1000;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 360px) {
    .floating-buttons {
        right: 10px;
        bottom: 12px;
        gap: 6px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
}

.about-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.mission-vision {
    padding: 80px 20px;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose {
    padding: 80px 20px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 20px 60px;
    }
    
    .about-content,
    .mission-vision,
    .why-choose,
    .stats-section {
        padding: 50px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Pagination Styles - Matching Admin Panel */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.pagination-info {
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.pagination-btn-text {
    width: auto;
    padding: 0 1rem;
    font-size: 0.875rem;
}

.pagination-btn:hover:not([style*="opacity"]) {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.pagination-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    font-weight: 600;
}

.pagination-btn i {
    font-size: 1.1rem;
    line-height: 1;
    display: inline-block;
    color: inherit;
}

@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-info {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .pagination-controls {
        gap: 0.35rem;
    }
    
    .pagination-btn {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

