/* Modern CSS Variables & Theming */
:root {
    --primary-red: #D40000;
    --dark-red: #940000;
    --light-red: #FFF0F0;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-grey: #F7F9FC; 
    --dark-bg: #0A0A0A;
    --dark-text: #1A1A1A;
    --secondary-text: #64748B;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 12px 36px rgba(0,0,0,0.03);
    --shadow-hover: 0 20px 45px rgba(212, 0, 0, 0.12);
    --radius-md: 20px;
    --radius-lg: 32px;
}

/* Lenis Smooth Scroll Recommended CSS */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Base & Reset (Strict Overflow X Fix) */
html, body { 
    max-width: 100vw; 
    overflow-x: hidden; 
    font-family: var(--font-body); 
    color: var(--dark-text); 
    background-color: var(--white); 
    position: relative; 
    -webkit-font-smoothing: antialiased; 
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-grey); }
::-webkit-scrollbar-thumb { background: var(--primary-red); border-radius: 4px; }
::selection { background-color: var(--primary-red); color: var(--white); }

/* Remove Default Blue Focus Rings */
*:focus, .form-control:focus, .btn:focus, a:focus { outline: none !important; box-shadow: none !important; }
a { color: var(--primary-red); text-decoration: none; }
a:hover { color: var(--dark-red); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; color: var(--dark-text); }
.section-padding { padding: 100px 0; position: relative; z-index: 2; overflow: hidden; }
.bg-light-grey { background-color: var(--light-grey); }

/* Typography Utilities */
.text-primary-red { color: var(--primary-red) !important; }
.text-gold { color: var(--gold) !important; }
.subtitle {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; color: var(--primary-red);
    font-weight: 700; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px;
}
.subtitle::before { content: ''; width: 40px; height: 2px; background: var(--primary-red); display: block; border-radius: 2px;}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader img {
    width: 180px;
    margin-bottom: 25px;
    animation: pulseLogo 1.5s infinite ease-in-out;
}
.loader-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid var(--light-red);
    border-radius: 50%;
    border-top-color: var(--primary-red);
    animation: spin 1s linear infinite;
}
body.loaded #preloader { opacity: 0; visibility: hidden; }
@keyframes pulseLogo { 0% { transform: scale(0.95); opacity: 0.8; } 100% { transform: scale(1.05); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Premium Buttons */
.btn-custom {
    font-family: var(--font-heading); font-weight: 600; padding: 16px 40px; border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); text-transform: uppercase;
    letter-spacing: 1px; font-size: 13px; position: relative; overflow: hidden; z-index: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-red { background: linear-gradient(135deg, var(--primary-red), var(--dark-red)); color: var(--white) !important; border: none; box-shadow: 0 10px 25px rgba(212, 0, 0, 0.25); }
.btn-red::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red)); z-index: -1; transition: opacity 0.5s ease; opacity: 0;
}
.btn-red:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(212, 0, 0, 0.35); }
.btn-red:hover::before { opacity: 1; }

.btn-outline-dark { background: transparent; color: var(--dark-text); border: 2px solid var(--dark-text); }
.btn-outline-dark:hover { background: var(--dark-text); color: var(--white) !important; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark-text) !important; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2); }

/* Shared Logo Styles */
.nav-logo { max-height: 50px; width: auto; object-fit: contain; }
.footer-logo { max-height: 60px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }

/* Desktop Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); padding: 15px 0; border-bottom: 1px solid var(--glass-border);
    z-index: 1040 !important; width: 100%; top: 0;
}
.navbar.scrolled { padding: 10px 0; background: rgba(255, 255, 255, 0.98); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

.nav-link { font-family: var(--font-heading); font-weight: 600; color: var(--dark-text) !important; margin: 0 18px; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; position: relative; transition: color 0.3s; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary-red); transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.nav-link:hover { color: var(--primary-red) !important; }
.nav-link:hover::after { width: 100%; }

/* Enhanced Mobile Menu */
.menu-toggle-btn { background: none; border: none; font-size: 26px; color: var(--primary-red); cursor: pointer; display: none; z-index: 1060; position: relative; transition: transform 0.4s; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 1040; opacity: 0; visibility: hidden; transition: all 0.5s ease; }
.mobile-sidebar { position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px; height: 100vh; background: var(--white); z-index: 1050; box-shadow: -20px 0 50px rgba(0,0,0,0.2); transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; padding: 30px 25px; overflow-y: auto; }

.menu-close-btn { background: var(--light-red); color: var(--primary-red); border: none; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; flex-shrink: 0;}
.menu-close-btn:hover { background: var(--primary-red); color: var(--white); transform: rotate(90deg); }

body.menu-open .mobile-overlay { opacity: 1; visibility: visible; }
body.menu-open .mobile-sidebar { right: 0; }

.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-item { margin-bottom: 25px; transform: translateY(30px); opacity: 0; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
.mobile-nav-link { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark-text); text-decoration: none; display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-nav-link i { font-size: 14px; opacity: 0; transform: translateX(-10px); transition: all 0.4s; color: var(--primary-red); }
.mobile-nav-link:hover { color: var(--primary-red); padding-left: 10px; }
.mobile-nav-link:hover i { opacity: 1; transform: translateX(0); }
body.menu-open .mobile-nav-item { transform: translateY(0); opacity: 1; }

/* Swiper Pagination */
.swiper-pagination-bullet { background-color: #CBD5E1; opacity: 1; transition: all 0.3s; }
.swiper-pagination-bullet-active { background-color: var(--primary-red) !important; width: 20px; border-radius: 10px; }

/* Enhanced Hero Section */
.hero-section { position: relative; height: 100vh; height: 100dvh; width: 100vw; overflow: hidden; background: #000; }
.hero-slider { height: 100%; width: 100%; }
.hero-bg-wrapper { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.hero-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.1); transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.1) 100%); }
.hero-content { position: relative; z-index: 3; color: var(--white) !important; padding-top: 80px; }
.hero-content .anim-elem { opacity: 0; transform: translateY(30px); color: var(--white) !important;}

.hero-content h1, .hero-content p { color: var(--white) !important; }
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 900; }
.hero-content h1 span { color: var(--white) !important; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 45px; max-width: 600px; line-height: 1.6; }

.hero-nav-wrapper { position: absolute; bottom: 50px; right: 5%; z-index: 10; display: flex; gap: 15px; align-items: center; }
.hero-btn { width: 55px; height: 55px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: white; cursor: pointer; backdrop-filter: blur(10px); transition: all 0.4s ease; }
.hero-btn:hover { background: var(--primary-red); border-color: var(--primary-red); transform: scale(1.05); }
.hero-pagination { color: white; font-family: var(--font-heading); font-weight: 700; font-size: 16px; letter-spacing: 2px;}

/* Modern Layout Cards */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 50px 40px; box-shadow: var(--shadow-soft); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; overflow: hidden; z-index: 1; }
.glass-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(212, 0, 0, 0.2); }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.img-main { border-radius: var(--radius-lg); width: 90%; box-shadow: var(--shadow-soft); }
.img-float { position: absolute; bottom: -40px; right: 0; width: 55%; border-radius: var(--radius-md); border: 10px solid var(--white); box-shadow: var(--shadow-hover); animation: float 6s ease-in-out infinite; }
.experience-badge { position: absolute; top: 30px; left: -30px; background: var(--primary-red); color: var(--white); padding: 30px; border-radius: 50%; width: 140px; height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 8px solid var(--white); box-shadow: var(--shadow-soft); z-index: 3; }
.experience-badge h3 { margin: 0; font-size: 2.5rem; line-height: 1; color: var(--white); }
.experience-badge span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; text-align: center; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Premium About Caption */
.enhanced-caption {
    position: relative;
    padding: 24px 30px;
    background: linear-gradient(135deg, #FFF9F9 0%, #FFFFFF 100%);
    border-left: 6px solid var(--primary-red);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 2rem;
    overflow: hidden;
    z-index: 1;
}
.enhanced-caption::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 3.5rem;
    color: rgba(212, 0, 0, 0.04);
    z-index: -1;
}
.enhanced-caption h4 {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.enhanced-caption span {
    display: block;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Enhanced Business Sectors */
.sector-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 340px; box-shadow: var(--shadow-soft); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; }
.sector-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.sector-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.05) 100%); transition: opacity 0.5s ease; }
.sector-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; color: var(--white); transform: translateY(15px); transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); display: flex; align-items: center; gap: 15px; }
.sector-icon { width: 55px; height: 55px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--white); transition: all 0.4s ease; flex-shrink: 0; }
.sector-content h4 { margin: 0; font-size: 20px; font-weight: 700; transition: color 0.4s; color: var(--white); }
.sector-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.sector-card:hover .sector-img { transform: scale(1.08); }
.sector-card:hover .sector-content { transform: translateY(0); }
.sector-card:hover .sector-icon { background: var(--primary-red); border-color: var(--primary-red); box-shadow: 0 5px 20px rgba(212,0,0,0.4); transform: scale(1.1); }

/* Product Cards */
.product-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--white); box-shadow: var(--shadow-soft); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(0,0,0,0.03); height: 100%; display: flex; flex-direction: column; }
.product-img-box { position: relative; overflow: hidden; height: 300px; background: var(--light-grey); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.product-badge { position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; z-index: 2; box-shadow: 0 5px 15px rgba(0,0,0,0.15); }
.product-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(212,0,0,0.9), transparent); opacity: 0; transition: opacity 0.5s ease; display: flex; align-items: center; justify-content: center; z-index: 1; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.product-card:hover .product-img { transform: scale(1.1); }
.product-card:hover .product-overlay { opacity: 1; }

/* Category Cards */
.cat-box { background: var(--white); border-radius: var(--radius-md); padding: 25px 20px; text-align: center; box-shadow: var(--shadow-soft); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(0,0,0,0.02); height: 100%; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cat-icon-wrapper { width: 65px; height: 65px; margin: 0 auto 15px; background: var(--light-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--primary-red); transition: all 0.4s ease; }
.cat-box h5 { font-size: 15px; margin: 0; color: var(--dark-text); transition: color 0.4s; font-weight: 600; }
.cat-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); background: var(--primary-red); }
.cat-box:hover .cat-icon-wrapper { background: var(--white); transform: scale(1.1); animation: iconPop 0.5s ease; }
.cat-box:hover h5 { color: var(--white); }
@keyframes iconPop { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1.1); } }

/* Brands Slider */
.brands-slider { width: 100%; overflow: hidden; padding: 40px 0; }
.brands-slider .swiper-wrapper { transition-timing-function: linear !important; align-items: center; }
.brand-logo-img { max-height: 80px; max-width: 150px; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.7); transition: all 0.4s ease; cursor: pointer; display: block; margin: 0 auto; }
.brand-logo-img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }

/* Stunning CTA Section */
.cta-banner { background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?q=80&w=1920&auto=format&fit=crop') center/cover fixed; position: relative; padding: 100px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(212,0,0,0.15); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,0,0,0.95), rgba(148,0,0,0.9)); z-index: 1; }
.cta-content { position: relative; z-index: 2; color: var(--white); text-align: center; }
.cta-content h2, .cta-content p { color: var(--white) !important; }

/* Form Fixes */
.form-floating > .form-control { border: none; border-bottom: 2px solid #E2E8F0; border-radius: 0; background: transparent; padding-left: 0; transition: border-color 0.4s; font-size: 16px; color: var(--dark-text); }
.form-floating > .form-control:focus { border-bottom-color: var(--primary-red); }
.form-floating > label { padding-left: 0; color: var(--secondary-text); font-weight: 500; }

/* Scroll to Top Circular Progress Button (Centered) */
.progress-wrap {
    position: fixed;
    left: 50%;
    bottom: 35px;
    height: 52px;
    width: 52px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(212, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 15px);
    transition: all 0.4s linear;
}
.progress-wrap.active-progress { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.progress-wrap::after {
    position: absolute; content: '\f062'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    text-align: center; line-height: 52px; font-size: 18px; color: var(--primary-red);
    left: 0; top: 0; height: 52px; width: 52px; cursor: pointer; display: block; z-index: 1; transition: all 0.4s linear;
}
.progress-wrap:hover::after { color: var(--white); }
.progress-wrap::before {
    position: absolute; content: ''; left: 0; top: 0; height: 100%; width: 100%;
    background: var(--primary-red); border-radius: 50%; z-index: 0; opacity: 0; transition: all 0.4s linear;
}
.progress-wrap:hover::before { opacity: 1; }
.progress-wrap svg.progress-circle {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; fill: none; transform: rotate(-90deg);
}
.progress-wrap svg.progress-circle path {
    stroke: var(--primary-red); stroke-width: 4; box-sizing: border-box; transition: all 0.4s ease;
}
.progress-wrap:hover svg.progress-circle path { stroke: var(--white); }

/* WhatsApp Button */
.whatsapp-float { position: fixed; bottom: 35px; right: 35px; z-index: 9999; background: #25D366; color: white; border-radius: 50px; display: flex; align-items: center; padding: 15px; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); text-decoration: none; overflow: hidden; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); animation: pulse-wa 2s infinite; }
.whatsapp-float i { font-size: 32px; margin: 0 2px; }
.whatsapp-text { max-width: 0; opacity: 0; white-space: nowrap; transition: all 0.4s ease; font-weight: 700; font-family: var(--font-heading); font-size: 15px; overflow: hidden; color: var(--white) !important;}
.whatsapp-float:hover { animation: none; transform: translateY(-5px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6); color: white; }
.whatsapp-float:hover .whatsapp-text { max-width: 200px; opacity: 1; margin-left: 12px; margin-right: 8px; }

/* Premium Dark Footer */
footer { 
    background-color: #050505; 
    padding: 100px 0 30px; 
    position: relative; 
    overflow: hidden; 
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
footer::after { 
    content: ''; position: absolute; inset: 0; 
    background: radial-gradient(circle at top right, rgba(212,0,0,0.12), transparent 40%),
                radial-gradient(circle at bottom left, rgba(212,175,55,0.06), transparent 40%);
    pointer-events: none; z-index: 1; 
}
footer .container { position: relative; z-index: 2; }
footer h4, footer h5 { color: var(--white); margin-bottom: 25px; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.5px; }
footer p, footer a { color: #94A3B8; font-weight: 400; }
footer a.footer-link { text-decoration: none; transition: all 0.3s; display: block; margin-bottom: 12px; font-size: 14.5px; }
footer a.footer-link:hover { color: var(--primary-red); transform: translateX(8px); }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: rgba(255,255,255,0.05); color: var(--white); border-radius: 50%; margin-right: 12px; transition: all 0.4s; }
.social-icons a:hover { background: var(--primary-red); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(212,0,0,0.3); color: white;}

.powered-logo { height: 24px; width: auto; vertical-align: middle; margin-left: 8px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }

/* Flex Fixes for alignment */
.contact-info-block { display: flex; align-items: flex-start; margin-bottom: 15px; }
.contact-info-icon { margin-top: 2px; margin-right: 15px; color: var(--primary-red); }

/* Mobile Breakpoints & Fixes */
@media (max-width: 1199px) { .hero-content h1 { font-size: 4rem; } .about-grid { gap: 40px; } }

@media (max-width: 991px) {
    .navbar-collapse { display: none !important; } .menu-toggle-btn { display: block; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .mobile-swiper .swiper-wrapper { margin-right: 0; margin-left: 0; align-items: stretch; }
    .mobile-swiper .swiper-slide { height: auto; } 
}

@media (max-width: 767px) {
    .section-padding { padding: 80px 0; }
    .container { padding-left: 20px; padding-right: 20px; }
    .nav-logo { max-height: 40px; }
    
    .hero-content h1 { font-size: 2.5rem; margin-bottom: 15px; }
    .hero-content p { font-size: 1rem; margin-bottom: 30px; }
    .hero-content .btn-custom { padding: 14px 24px; font-size: 12px; width: 100%; margin-bottom: 10px; }
    .hero-content .d-flex { flex-direction: column; width: 100%; gap: 10px !important; align-items: stretch; }
    .hero-nav-wrapper { right: 50%; transform: translateX(50%); bottom: 30px; width: max-content; }
    .hero-btn { width: 45px; height: 45px; font-size: 14px; }
    .hero-pagination { font-size: 14px; }
    
    .img-main { width: 95%; margin-bottom: 20px; }
    .img-float { width: 60%; right: 0; left: auto; bottom: -20px; border-width: 6px; }
    .experience-badge { top: -15px; right: 10px; left: auto; width: 110px; height: 110px; padding: 20px; border-width: 6px; }
    .experience-badge h3 { font-size: 1.8rem; }
    .experience-badge span { font-size: 0.65rem; }

    .cta-banner { border-radius: 0; }
    
    .whatsapp-float { bottom: 20px; right: 20px; padding: 12px; }
    .whatsapp-float i { font-size: 28px; }
    .progress-wrap { bottom: 20px; width: 45px; height: 45px; }
    .progress-wrap::after { line-height: 45px; height: 45px; width: 45px; font-size: 16px; }
    
    .footer-bottom-flex { flex-direction: column; text-align: center; gap: 15px; }
}