/* CSS Variables */
:root {
    --primary-gold: #f3b11e;
    --primary-green: #869e38;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    --text-color: #212529;
    --footer-bg: #111111;
    --transition-speed: 0.3s;
    --border-radius: 20px;
    --box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--primary-green));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* General Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--black);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(243, 177, 30, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(243, 177, 30, 0.4);
}

.section-padding {
    padding: 100px 0;
}

/* Professional Header */
.top-bar {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.top-bar a:hover {
    color: var(--primary-gold);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    will-change: padding, box-shadow;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-speed) ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-speed) ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon, .user-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.search-icon:hover, .user-icon:hover {
    color: var(--primary-green);
    transform: scale(1.1);
}

/* Hero Section - Full Background Video */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 40px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(134, 158, 56, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero .gradient-text {
    background: linear-gradient(135deg, var(--primary-gold), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Professional Slider Section */
.professional-slider {
    position: relative;
    background: linear-gradient(135deg, var(--black), #1a1a1a);
    padding: 80px 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-header {
    text-align: center;
    margin-bottom: 60px;
}

.slider-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slider-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slide-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 600px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 177, 30, 0.4);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn-control {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin: 0 20px;
    border: none;
    font-size: 1.5rem;
}

.slider-btn-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

/* LIMITED TIME OFFER - Professional Design */
.limited-offer-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.limited-offer-section::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: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.limited-offer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.offer-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.offer-highlight {
    color: var(--white);
    font-size: 4rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.offer-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.offer-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition-speed) ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1rem;
}

.feature-item i {
    color: var(--white);
    font-size: 1.2rem;
}

.offer-cta {
    text-align: center;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-green);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.offer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.offer-urgency {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Company Info Section */
.company-info {
    background: var(--gray-light);
    padding: 80px 0;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.company-image {
    flex: 1;
}

.company-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

.company-image:hover img {
    transform: scale(1.02);
}

.company-content {
    flex: 1;
}

.company-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.company-text {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.company-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.company-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-color);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--gradient-primary);
    color: var(--black);
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 12px 40px rgba(243, 177, 30, 0.4);
    z-index: 999;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed) ease;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 50px rgba(243, 177, 30, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    font-weight: 400;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--gray-medium);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: transform var(--transition-speed) ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-dark);
    font-size: 1rem;
}

/* Video Showcase Section */
.video-showcase {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.video-showcase video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.video-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(134, 158, 56, 0.4) 100%);
    z-index: -1;
}

.video-showcase-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.video-showcase-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-showcase-content .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-showcase-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.video-showcase-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-4px);
}

/* Products Section */
.products-section {
    background-color: var(--gray-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 35px;
}

.product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-content p {
    color: var(--gray-dark);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.product-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-speed) ease;
}

.product-link:hover {
    gap: 12px;
}

/* Reviews Section */
.reviews {
    background-color: var(--gray-light);
}

.review-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.review-filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--gray-medium);
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.review-filter-btn.active {
    background: var(--gradient-primary);
    color: var(--black);
    border-color: var(--primary-gold);
}

.review-filter-btn:hover:not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-medium);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 100px;
    color: var(--primary-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.review-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.reviewer-info p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 800;
}

.contact-form-wrapper p {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(134, 158, 56, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Professional Footer */
footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 0;
}

.footer-main {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
    transition: transform var(--transition-speed) ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.footer-socials a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Live Notification Bar */
.notification-bar {
    position: fixed;
    bottom: 120px;
    right: 40px;
    background: var(--white);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 998;
    max-width: 320px;
    transform: translateX(400px);
    transition: transform 0.5s ease;
}

.notification-bar.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.notification-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

.notification-time {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* Customer Counter */
.counter-section {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.counter {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.counter-label {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Interactive Savings Calculator */
.calculator-section {
    background-color: var(--gray-light);
    padding: 100px 0;
}

.calculator {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.calculator h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 800;
    color: var(--black);
}

.calculator p {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.calc-result {
    background: linear-gradient(135deg, rgba(134, 158, 56, 0.1), rgba(243, 177, 30, 0.1));
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px dashed var(--primary-green);
}

.calc-result h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black);
}

.savings-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.calc-result p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Trust & Guarantee Shield */
.trust-shield {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    margin-left: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-shield i {
    margin-right: 8px;
    color: var(--primary-gold);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--black);
}

.modal-content p {
    color: var(--gray-dark);
    margin-bottom: 25px;
}

.modal-close {
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-content { grid-template-columns: 1fr 1fr 1fr; }
    .footer-section:first-child { grid-column: span 3; }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .offer-title { font-size: 2.5rem; }
    .video-showcase-content h2 { font-size: 2.5rem; }
    .company-container { flex-direction: column; }
    .company-features { grid-template-columns: 1fr; }
    .header-actions { display: none; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }
    .contact-form-wrapper, .calculator { padding: 40px 24px; }
    .product-grid, .benefits-grid, .review-grid { grid-template-columns: 1fr; }
    .video-showcase-content h2 { font-size: 2rem; }
    .video-showcase-buttons { flex-direction: column; align-items: center; }
    .video-showcase-buttons .btn-primary, .video-showcase-buttons .btn-secondary { width: 100%; max-width: 300px; }
    .slider-title { font-size: 2rem; }
    .slide-image { height: 400px; }
    .slide-title { font-size: 1.8rem; }
    .company-title { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-section:first-child { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .offer-timeline { grid-template-columns: 1fr; }
    .offer-features { grid-template-columns: 1fr; }
    .calculator-form { grid-template-columns: 1fr; }
}