/* Default styles (desktop) */
.container {
  width: 1200px;
}
.container {
  width: 90%;
  margin: auto;
}


:root {
    --bg-color: #0a0a0a;
    --surface-color: #151515;
    --primary-color: #d4af37;
    /* Gold */
    --primary-hover: #f1c40f;
    --text-main: #f5f5f5;
    --text-muted: #aaaaaa;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 2;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography & Utilities */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: var(--primary-color);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-cta:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('img/6.jpg') center/cover no-repeat;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
    min-height: 100px;
}

/* Products */
.products-section {
    padding: 8rem 5%;
    background: var(--bg-color);
    
}

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

.product-card {
    background: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img {
    transform: scale(1.05);
}

.card-info {
    padding: 2rem;
    text-align: center;
    
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

/* Videos */
.videos-section {
    padding: 8rem 5%;
    background: var(--surface-color);
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.video-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 5%;
    background: var(--bg-color);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.review {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
    min-height: 100px;
}

.client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.client-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.client-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920') center/cover fixed;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 3rem;
}

.btn-whatsapp {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-color);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple mobile nav */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .video-container {
        grid-template-columns: 1fr;
    }
}


/*new style*/










/* Variables */
:root {
    --primary-bg: #0f1011;
    --secondary-bg: #16181a;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b5952f;
    --text-white: #fdfdfd;
    --text-gray: #a8a8a8;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}
.logo{
    height: 100px;
    width: 200px;}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid var(--accent-gold);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(15, 16, 17, 0.95);
    padding: 15px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), 
                url('img/6.jpg') no-repeat center center/cover;
    /* background-attachment: fixed removed — broken on iOS Safari */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Sections */
.section {
    padding: 100px 50px;
}

.dark-alt {
    background-color: var(--secondary-bg);
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-white);
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 15px auto;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Grids */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.product-card {
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.08); /* subtle zoom on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .overlay {
    opacity: 1;
}

.product-info {
    padding: 20px 0;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-info .price {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Specific grids styling */
.shoes-grid .img-wrapper {
    aspect-ratio: 1/1; /* Square images for shoes */
    background: #111;
}

/* Footer */
.footer {
    background-color: #080809;
    padding: 80px 50px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.footer-brand h2 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-gray);
    max-width: 300px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

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

.footer-links a {
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-bg);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 900px) {
    .nav-links { gap: 20px; }
    .hero-content h1 { font-size: 3.5rem; }
    .section-header h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .nav-links { display: none; /* In a real app we'd add a mobile menu toggle overlay */ }
    .section { padding: 60px 20px; }
    .grid-container { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .footer-content { flex-direction: column; gap: 40px; }
}
/* =======================================
       Contact (Footer) Section
       ======================================= */
    footer {
      background-color: var(--surface-color);
      padding: 5rem 5% 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
    }

    .contact-section h3 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--text-color);
    }

    .contact-section p {
      color: var(--text-muted);
      margin-bottom: 2.5rem;
      font-size: 1.1rem;
    }

    .contact-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .contact-btn i {
      font-size: 1.5rem;
    }

    .wechat-btn {
      background-color: rgba(7, 193, 96, 0.1);
      color: var(--wechat-green);
      border: 1px solid rgba(7, 193, 96, 0.2);
    }

    .wechat-btn:hover {
      background-color: var(--wechat-green);
      color: #fff;
      border-color: var(--wechat-green);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(7, 193, 96, 0.3);
    }

    .whatsapp-btn {
      background-color: rgba(37, 211, 102, 0.1);
      color: var(--whatsapp-green);
      border: 1px solid rgba(37, 211, 102, 0.2);
    }

    .whatsapp-btn:hover {
      background-color: var(--whatsapp-green);
      color: #fff;
      border-color: var(--whatsapp-green);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    }

    .footer-bottom {
      margin-top: 5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* =======================================
       Pure CSS Modal for WeChat QR Code
       ======================================= */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* Trigger modal visibility when target is active */
    .modal:target {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: var(--surface-color);
      padding: 3rem 2rem;
      border-radius: 24px;
      text-align: center;
      position: relative;
      max-width: 400px;
      width: 90%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    }

    .modal:target .modal-content {
      transform: scale(1);
    }

    .close-btn {
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      font-size: 2.2rem;
      color: var(--text-muted);
      text-decoration: none;
      line-height: 1;
      transition: color 0.3s ease;
    }

    .close-btn:hover {
      color: #ff4757;
    }

    .modal-header i {
      color: var(--wechat-green);
      font-size: 3.5rem;
      margin-bottom: 1rem;
    }

    .modal-header h3 {
      color: var(--text-color);
      font-size: 1.8rem;
    }

    .qr-code-container {
      background: #ffffff;
      padding: 1rem;
      border-radius: 16px;
      margin: 2rem auto;
      width: 200px;
      height: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .qr-code-container img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .modal-footer p {
      font-weight: 600;
      font-size: 1.15rem;
      color: var(--text-color);
      background: rgba(255, 255, 255, 0.05);
      padding: 0.75rem 1rem;
      border-radius: 10px;
      display: inline-block;
      user-select: all; /* Easy copying */
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav ul {
        display: none; /* simple hidden nav for mobile */
      }
      .hero {
        padding: 6rem 1rem;
      }
      .products {
        padding: 3rem 1rem;
      }
      .contact-links {
        flex-direction: column;
        align-items: center;
      }
      .contact-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /*$$$$$$$$*/
     /* Container to align elements horizontally */
        .price-display {
            display: flex;
            align-items: center;
            gap: 12px;
            /* Space between elements */
        }

        /* Original Price: Gray with a strikethrough */
        .price-original {
            color: #555b66;
            font-size: 20px;
            font-weight: 300;
            text-decoration: line-through;
            text-decoration-thickness: 3px;
        }

        /* Current Price: Deep red/burgundy and slightly larger */
        .price-current {
            color: #8b3541;
            font-size: 18px;
            font-weight: 800;
        }

        /* Save Badge: Green pill background with white text */
        .badge-save {
            background-color: #27883a;
            color: #ffffff;
            font-size: 10px;
            font-weight: 300;
            text-transform: uppercase;
            padding: 2px 9px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        /* =======================================
           WhatsApp Floating Button
           ======================================= */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            text-decoration: none;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            animation: pulse-whatsapp 2.5s infinite;
        }

        .whatsapp-float:hover {
            background-color: #1ebe57;
            transform: scale(1.12);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
        }

        @keyframes pulse-whatsapp {
            0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
            70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* =======================================
           Mobile Responsive Fixes
           ======================================= */
        @media (max-width: 768px) {
            .section {
                padding: 60px 16px;
            }

            .grid-container {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .section-header {
                margin-bottom: 30px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .section-header p {
                font-size: 0.9rem;
            }

            .price-display {
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
            }

            .product-info {
                padding: 10px 0;
                font-size: 0.8rem;
            }

            .product-info p {
                font-size: 0.75rem;
            }

            .img-wrapper {
                aspect-ratio: 1/1;
            }

            .video-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }

            .navbar {
                padding: 12px 16px;
            }

            .logo {
                height: 55px;
                width: auto;
                max-width: 130px;
            }

            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 1.7rem;
                bottom: 20px;
                right: 16px;
            }
        }

        @media (max-width: 400px) {
            .grid-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }
        }
