/*
  Massey Ferguson 240 Tractor - Modern Redesign 2025
  Complete redesign with modern aesthetics
*/

/* ============================================
   CSS VARIABLES & ROOT STYLES
============================================ */
:root {
    --primary-red: #E31E24;
    --dark-red: #B71C1C;
    --light-red: #FF5252;
    --dark-bg: #0A0E27;
    --darker-bg: #060918;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --font-primary: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
    background: var(--dark-bg);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.contact-info a,
.social-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    transition: var(--transition-base);
}

.contact-info a:hover {
    color: var(--light-red);
}

.contact-info i {
    margin-right: 6px;
}

.social-links a {
    margin-right: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--light-red);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    padding: 16px 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition-base);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red);
    background: rgba(227, 30, 36, 0.05);
}

.btn-primary-cta {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    transition: var(--transition-base);
    border: none;
}

.btn-primary-cta:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(227, 30, 36, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--light-red);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-chip {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.feature-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.btn-hero-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
}

.btn-hero-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.5);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.stat-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeIn 1s ease 1.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ============================================
   SECTION STYLES
============================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
============================================ */
.features-section {
    background: var(--gray-100);
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    background: var(--white);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-content i {
    font-size: 32px;
    color: var(--primary-red);
}

.badge-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--gray-900);
}

.badge-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.about-content {
    padding-left: 20px;
}

.about-highlights {
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 4px;
}

.highlight-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.btn-primary-lg {
    background: var(--primary-red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
}

.btn-primary-lg:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
    color: var(--white);
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-section {
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-red));
    padding: 80px 0;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.btn-cta-white {
    background: var(--white);
    color: var(--primary-red);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
}

.btn-cta-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    color: var(--dark-red);
}

/* ============================================
   SPECIFICATIONS SECTION
============================================ */
.specs-section {
    background: var(--white);
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.spec-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-header i {
    font-size: 24px;
}

.spec-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.spec-body {
    padding: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background: var(--gray-100);
}

.spec-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.spec-value {
    font-size: 15px;
    color: var(--gray-900);
    font-weight: 600;
}

/* ============================================
   BENEFITS SECTION
============================================ */
.benefits-section {
    background: var(--gray-100);
}

.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-red);
    transition: var(--transition-base);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(227, 30, 36, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   QUOTE SECTION
============================================ */
.quote-section {
    background: var(--white);
    padding: 100px 0;
}

.quote-content {
    padding-right: 40px;
}

.quote-features {
    margin-top: 32px;
}

.quote-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--gray-700);
}

.quote-feature-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.contact-methods h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-method i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.contact-method strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
}

.contact-method a {
    display: block;
    font-size: 16px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.contact-method a:hover {
    color: var(--dark-red);
}

.quote-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.quote-card-header {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-red));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.quote-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.quote-card-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.quote-card-body {
    padding: 30px;
}

.product-image {
    margin-bottom: 24px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: var(--primary-red);
    font-size: 18px;
}

.btn-quote-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
}

.btn-quote-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
    color: var(--white);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer .social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition-base);
    text-decoration: none;
}

.footer .social-icon:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-4px);
}

.footer-copy {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy p {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a {
    color: var(--primary-red);
    text-decoration: none;
    margin: 0 12px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--light-red);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: scale(1.1);
    color: var(--white);
}

/* ============================================
   SCROLL TO TOP BUTTON
============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
}

/* ============================================
   MODAL STYLES
============================================ */
.modal-backdrop.show {
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    border-radius: var(--border-radius-lg);
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 85vh;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-card {
        margin-top: 40px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .quote-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .spec-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        text-align: center;
        padding: 10px 0;
    }
    
    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 8px;
    }
    
    .contact-info {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .contact-info a {
        margin-right: 10px;
        font-size: 13px;
    }
    
    .social-links {
        justify-content: center;
        display: flex;
        margin-top: 8px;
    }
    
    /* Navbar */
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
        text-align: center;
    }
    
    .btn-primary-cta {
        width: 100%;
        justify-content: center;
        margin: 8px 0 0 0;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: auto !important;
        padding: 0 !important;
        display: block;
    }
    
    .hero-slide {
        background-attachment: scroll !important;
        position: relative !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
    
    .hero-section .row {
        min-height: auto !important;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .hero-features {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .feature-chip {
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-stats-card {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 16px 0;
        gap: 16px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-info h3 {
        font-size: 24px;
    }
    
    .stat-info p {
        font-size: 13px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    /* Features Section */
    .feature-card {
        padding: 30px 24px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* About Section */
    .about-image {
        margin-bottom: 30px;
    }
    
    .about-badge {
        position: static;
        margin-top: 20px;
        min-width: auto;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .highlight-item {
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .highlight-item i {
        font-size: 20px;
    }
    
    .highlight-item h5 {
        font-size: 16px;
    }
    
    .highlight-item p {
        font-size: 13px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    /* CTA Banner */
    .cta-banner {
        padding: 50px 0;
    }
    
    .cta-content {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-banner .col-lg-4 {
        text-align: center !important;
    }
    
    .btn-cta-white {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Specifications */
    .spec-card {
        margin-bottom: 20px;
    }
    
    .spec-header {
        padding: 16px 20px;
    }
    
    .spec-header h4 {
        font-size: 16px;
    }
    
    .spec-row {
        padding: 14px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .spec-label {
        font-size: 13px;
    }
    
    .spec-value {
        font-size: 14px;
    }
    
    /* Benefits */
    .benefit-card {
        padding: 30px 24px;
        margin-bottom: 20px;
    }
    
    .benefit-number {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    /* Quote Section */
    .quote-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .quote-feature-item {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .quote-feature-item i {
        font-size: 18px;
    }
    
    .contact-method {
        margin-bottom: 14px;
        gap: 12px;
    }
    
    .contact-method i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .contact-method strong {
        font-size: 13px;
    }
    
    .contact-method a {
        font-size: 15px;
    }
    
    .quote-card-header {
        padding: 24px 20px;
    }
    
    .quote-card-header h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .quote-card-header p {
        font-size: 14px;
    }
    
    .quote-card-body {
        padding: 24px 20px;
    }
    
    .product-features li {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .product-features li i {
        font-size: 16px;
    }
    
    .btn-quote-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-social {
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .footer .social-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .footer-copy p {
        font-size: 13px;
    }
    
    .footer-links a {
        margin: 0 8px;
        font-size: 13px;
    }
    
    /* Floating Buttons */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .scroll-to-top {
        bottom: 85px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    /* Extra small devices */
    section {
        padding: 50px 0;
    }
    
    .hero-section .row {
        padding: 60px 0 50px !important;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats-card {
        padding: 24px 16px;
        margin-top: 30px;
    }
    
    .feature-chip {
        flex: 1 1 100%;
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .benefit-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .feature-card h3,
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .spec-header i {
        font-size: 20px;
    }
    
    .spec-header h4 {
        font-size: 15px;
    }
    
    .about-badge {
        padding: 16px;
    }
    
    .badge-content i {
        font-size: 24px;
    }
    
    .badge-content h4 {
        font-size: 14px;
    }
    
    .badge-content p {
        font-size: 12px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 75px;
        left: 15px;
    }
}section .row {
        padding: 50px 0 40px !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 12px
@media (max-width: 400px) {
    /* Very small devices */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-white,
    .btn-quote-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .stat-info h3 {
        font-size: 20px;
    }
    
    .contact-info a {
        font-size: 12px;
        margin-right: 8px;
    }
    
    .social-links a {
        font-size: 14px;
        margin-right: 10px;
    }
}

/* ============================================
   MOBILE OVERFLOW FIX
============================================ */
* {
    max-width: 100%;
}

.container,
.container-fluid,
.row {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}
