/* ============================================
   FORMOST UNIFORMS - MODERN FASHION DESIGN
   Minimalist Luxury E-commerce Aesthetic
   ============================================ */

:root {
    /* Formost Brand Colors - Matching Logo */
    --color-primary: #DC1C2C;       /* Bright Red from Logo */
    --color-primary-hover: #C01828;
    --color-primary-light: #FFE5E7;

    --color-secondary: #2B4C8C;     /* Navy Blue from Logo */
    --color-secondary-hover: #1E3A70;
    --color-secondary-light: #E8EDF5;

    --color-navy: #1E3A70;          /* Dark Navy for Text */
    --color-accent: #F39C12;        /* Warm Gold Accent */
    --color-accent-hover: #E67E22;

    /* Neutral Colors */
    --color-black: #000000;
    --color-charcoal: #1a1a1a;
    --color-dark-gray: #2d2d2d;
    --color-medium-gray: #666666;
    --color-light-gray: #999999;
    --color-soft-gray: #f5f5f5;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 1400px;
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;

    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
}

.container-fashion {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container-fashion {
        padding: 0 1rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.fashion-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

/* Top Bar transition */
.top-bar {
    transition: background-color 0.3s ease;
}

/* Transparent header at top of page (desktop only) */
@media (min-width: 1025px) {
    .fashion-header.transparent {
        background-color: rgba(255, 255, 255, 0.75) !important;
        border-bottom: 1px solid rgba(232, 232, 232, 0.2) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
    }

    .fashion-header.transparent .top-bar {
        background-color: rgba(30, 58, 112, 0.85) !important;
    }

    /* Solid header when scrolled */
    .fashion-header.scrolled {
        background-color: #ffffff !important;
        border-bottom: 1px solid #e8e8e8 !important;
        backdrop-filter: none;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .fashion-header.scrolled .top-bar {
        background-color: var(--color-navy) !important;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.top-bar-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 8px 0;
    gap: 1rem;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-center {
    justify-content: center;
    font-weight: 500;
    text-transform: uppercase;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar-link {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-separator {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .top-bar-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        display: none;
    }
}

/* Main Navigation */
.main-nav {
    background-color: var(--color-white);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

/* Logo */
.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-medium-gray);
    text-transform: uppercase;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-dark-gray);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

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

.nav-item:hover::after,
.nav-item.active::after {
    width: 60%;
}

.nav-item.active {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fashion-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.fashion-btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
    .fashion-btn-primary {
        display: none;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-btn:active {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: var(--color-white);
    border-top: 1px solid #e8e8e8;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.mobile-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-item {
    padding: 0.75rem 1rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-dark-gray);
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

/* Smooth text animations when slide becomes active */
.hero-slide.active .hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-slide.active .hero-description {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-slide.active .hero-btn {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    z-index: 2;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--color-white) !important;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-white);
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--color-white);
}

.hero-btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    margin-left: 1rem;
}

.hero-btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Mobile button spacing */
@media (max-width: 768px) {
    .hero-content > div {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        max-width: 280px;
        margin-left: 0;
        text-align: center;
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background-color: var(--color-white);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-arrow-prev {
    left: 2rem;
}

.slider-arrow-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 14px;
    }

    .slider-arrow {
        display: none;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.fashion-footer {
    background-color: #101725;
    color: var(--color-light-gray);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--color-soft-gray);
    padding: 3rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 14px;
    color: var(--color-medium-gray);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #d8d8d8;
    background-color: var(--color-white);
    font-size: 13px;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

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

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
    }
}

/* Main Footer */
.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col {
    color: var(--color-light-gray);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-gray);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.footer-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 13px;
    color: var(--color-light-gray);
    text-decoration: none;
    transition: color 0.2s;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
    margin: 0;
}

.footer-payment {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   PRODUCT CARDS (Fashion Style)
   ============================================ */

.fashion-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fashion-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: var(--color-soft-gray);
}

.fashion-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.fashion-card-content {
    padding: 1.25rem 0;
    text-align: center;
}

.fashion-card-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.fashion-card-price {
    font-size: 14px;
    color: var(--color-medium-gray);
    font-weight: 500;
}

.fashion-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.375rem 0.75rem;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================
   SECTIONS
   ============================================ */

.fashion-section {
    padding: var(--section-padding) 0;
}

.fashion-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 1rem;
}

.fashion-section-subtitle {
    font-size: 14px;
    color: var(--color-medium-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .fashion-section {
        padding: var(--section-padding-mobile) 0;
    }

    .fashion-section-title {
        font-size: 28px;
    }
}

/* ============================================
   BUTTONS (Fashion Style)
   ============================================ */

.fashion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fashion-btn-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.fashion-btn-dark:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.fashion-btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.fashion-btn-light:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   UTILITY BUTTON CLASSES
   ============================================ */

/* Primary Button - Red Theme */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 28, 44, 0.3);
}

/* Secondary Button - Navy Theme */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 76, 140, 0.3);
}

/* Outline Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 28, 44, 0.2);
}

.btn-outline.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Large Button Size */
.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 16px;
    letter-spacing: 0.75px;
}

/* Button with Icon Spacing */
.btn-primary svg,
.btn-secondary svg,
.btn-outline svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* ============================================
   LEGACY SUPPORT
   ============================================ */

/* Keep some legacy classes for backward compatibility */
.section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.w-full {
    width: 100%;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */

/* Form Container */
#contact-form {
    max-width: 100%;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-navy);
}

.form-group label svg {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Form Inputs */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    background-color: #ffffff;
    transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(220, 28, 44, 0.1);
}

#contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button with Gradient */
#contact-form button[type="submit"] {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91828 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(220, 28, 44, 0.3);
}

#contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #b91828 0%, #9e1522 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(220, 28, 44, 0.4);
}

#contact-form button[type="submit"]:active {
    transform: translateY(0) scale(0.98);
}

#contact-form button[type="submit"] svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

#contact-form button[type="submit"]:hover svg:first-child {
    transform: translateX(4px);
}

#contact-form button[type="submit"] svg:last-child {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#contact-form button[type="submit"]:hover svg:last-child {
    opacity: 1;
}

/* Success Message */
#success-message {
    padding: 1.25rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid #10b981;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

#success-message h3 {
    font-weight: 600;
    color: #065f46;
    margin-bottom: 0.25rem;
}

#success-message p {
    font-size: 0.875rem;
    color: #047857;
    margin: 0.25rem 0 0 0;
}

#success-message svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Error Message */
#error-message {
    padding: 1.25rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fce7f3 100%);
    border-left: 4px solid #ef4444;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

#error-message h3 {
    font-weight: 600;
    color: #991b1b;
    margin-bottom: 0.25rem;
}

#error-message p {
    font-size: 0.875rem;
    color: #b91c1c;
    margin: 0.25rem 0 0 0;
}

#error-message svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease-out;
}

/* Grid Layout for Form */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem;
}

/* Flex Utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.gap-3 {
    gap: 0.75rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Contact Form Button Override */
#contact-form .btn-primary,
#contact-form button.btn-primary {
    width: 100% !important;
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#contact-form .btn-primary:hover,
#contact-form button.btn-primary:hover {
    background-color: var(--color-primary-hover) !important;
}

/* ============================================
   MODERN HOME PAGE REDESIGN
   ============================================ */

/* ===== MODERN HERO SLIDER ===== */
.modern-hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.modern-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.modern-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.modern-hero-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(30, 58, 112, 0.85) 0%,
        rgba(220, 28, 44, 0.75) 100%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.modern-hero-content {
    width: 100%;
    max-width: 800px;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease-out;
}

.modern-hero-slide.active .hero-text-wrapper {
    animation: fadeInUp 1s ease-out;
}

.modern-hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.modern-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.modern-hero-description {
    font-size: 1.125rem;
    color: #ffffff;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.modern-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Modern Buttons */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modern-btn span {
    position: relative;
    z-index: 1;
}

.modern-btn .btn-icon,
.modern-btn .btn-icon-left {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.modern-btn:hover .btn-icon {
    transform: translateX(5px);
}

.modern-btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91828 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(220, 28, 44, 0.3);
}

.modern-btn-primary:hover {
    box-shadow: 0 15px 40px rgba(220, 28, 44, 0.4);
    transform: translateY(-2px);
}

.modern-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modern-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.modern-btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.modern-btn-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Parallax Shapes */
.parallax-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Modern Slider Navigation */
.modern-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.modern-slider-arrow svg {
    width: 24px;
    height: 24px;
}

.modern-arrow-prev {
    left: 2rem;
}

.modern-arrow-next {
    right: 2rem;
}

.modern-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.modern-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-slider-dot.active {
    background: #ffffff;
    width: 40px;
    border-radius: 10px;
}

/* ===== MODERN TRUST SECTION ===== */
.modern-trust-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.trust-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(220, 28, 44, 0.3);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.trust-icon {
    width: 35px;
    height: 35px;
    color: #ffffff;
    fill: #ffffff;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-medium-gray);
    font-weight: 600;
}

.trust-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 28, 44, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover .trust-glow {
    opacity: 1;
}

/* ===== MODERN PRODUCTS SECTION ===== */
.modern-products-section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    background: rgba(220, 28, 44, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-heading);
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-medium-gray);
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.modern-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-product-card:hover .product-image {
    transform: scale(1.1);
}

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

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

.overlay-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: var(--color-navy);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.modern-product-card:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-5px);
}

.overlay-btn svg {
    width: 18px;
    height: 18px;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(220, 28, 44, 0.4);
}

.product-badge-new {
    background: var(--color-secondary);
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--color-medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(220, 28, 44, 0.1);
    color: var(--color-primary);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.section-cta {
    text-align: center;
}

/* ===== MODERN FEATURES SECTION ===== */
.modern-features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 28, 44, 0.1) 0%, rgba(43, 76, 140, 0.1) 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-bg {
    transform: rotate(45deg) scale(1.2);
}

.feature-icon {
    position: relative;
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark-gray);
    font-size: 0.875rem;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ===== MODERN TESTIMONIALS SECTION ===== */
.modern-testimonials-section {
    padding: 6rem 0;
    background: #ffffff;
}

/* ===== MODERN CTA SECTION ===== */
.modern-cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-primary) 100%);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

.cta-icon {
    width: 50px;
    height: 50px;
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modern-btn-light {
    background: #ffffff;
    color: var(--color-navy);
}

.modern-btn-light:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.modern-btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.modern-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation: float 20s infinite ease-in-out reverse;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 10%;
    animation: float 18s infinite ease-in-out;
    animation-delay: -5s;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .modern-hero-slider {
        height: 100vh;
        min-height: 500px;
    }

    .modern-hero-title {
        font-size: 2.5rem;
    }

    .modern-hero-description {
        font-size: 1rem;
    }

    .modern-hero-buttons {
        flex-direction: column;
    }

    .modern-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hide navigation arrows on mobile - using swipe instead */
    .modern-slider-arrow {
        display: none;
    }

    /* Add swipe hint indicator */
    .modern-hero-slider::after {
        content: '';
        position: absolute;
        bottom: 5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 10px;
        z-index: 5;
        animation: swipeHint 2s ease-in-out infinite;
    }

    @keyframes swipeHint {
        0%, 100% {
            opacity: 0.3;
            transform: translateX(-50%) scaleX(1);
        }
        50% {
            opacity: 0.7;
            transform: translateX(-50%) scaleX(1.5);
        }
    }

    .modern-hero-content {
        pointer-events: none;
    }

    .modern-hero-content a,
    .modern-hero-content button {
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .modern-slider-nav {
        bottom: 1rem;
    }

    .modern-slider-dot {
        width: 8px;
        height: 8px;
    }

    .modern-slider-dot.active {
        width: 24px;
    }

    .trust-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .modern-products-section,
    .modern-features-section,
    .modern-testimonials-section {
        padding: 4rem 0;
    }

    .modern-cta-section {
        padding: 5rem 0;
    }
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Page Hero */
.contact-page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(30, 58, 112, 0.85) 0%,
        rgba(220, 28, 44, 0.75) 100%);
    display: flex;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.contact-page-hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.contact-page-hero-content .modern-hero-subtitle,
.contact-page-hero-content .modern-hero-title,
.contact-page-hero-content .modern-hero-description {
    animation: fadeInUp 0.8s ease-out both;
}

.contact-page-hero-content .modern-hero-subtitle {
    animation-delay: 0.2s;
}

.contact-page-hero-content .modern-hero-title {
    animation-delay: 0.4s;
}

.contact-page-hero-content .modern-hero-description {
    animation-delay: 0.6s;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91828 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(220, 28, 44, 0.2);
    transition: all 0.3s ease;
}

.contact-info-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 28, 44, 0.3);
}

.contact-info-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 1.5;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact-info-text,
.contact-info-link {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-info-link {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-link:hover {
    color: #b91828;
    text-decoration: underline;
}

/* Contact Form and Locations Container */
.contact-form-locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Contact Form Card - Page Specific */
.contact-form-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-form-card.contact-form-card-compact {
    padding: 1.75rem;
}

.contact-form-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

.contact-form-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-label svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.contact-form-input {
    width: 100%;
    font-family: var(--font-body);
    padding: 0.6rem 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(220, 28, 44, 0.1);
}

.contact-form-button {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91828 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 28, 44, 0.25);
}

/* Branch Locations */
.branch-locations {
    padding-top: 0;
}

.branch-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.branch-card {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.branch-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(220, 28, 44, 0.15);
    transform: translateY(-4px);
}

.branch-card-header {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.branch-card-location,
.branch-card-phone {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.branch-card-location:last-child,
.branch-card-phone:last-child {
    margin-bottom: 0;
}

.branch-card-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-card-link {
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branch-card-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-form-locations-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .contact-page-hero-content .modern-hero-title {
        font-size: 2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-form-card.contact-form-card-compact {
        padding: 1.25rem;
    }

    .contact-info-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

    .contact-info-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-info-title {
        font-size: 1.1rem;
    }

    .branch-cards-grid {
        gap: 0.75rem;
    }

    .branch-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-page-hero {
        height: 45vh;
        min-height: 350px;
    }

    .contact-page-hero-content .modern-hero-title {
        font-size: 1.5rem;
    }

    .contact-page-hero-content .modern-hero-description {
        font-size: 0.95rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 1.25rem;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
    }

    .contact-info-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-info-title {
        font-size: 1rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .branch-card {
        padding: 1.25rem;
    }

    .branch-card-header {
        font-size: 0.9rem;
    }
}

/* ============================================
   PRODUCTS PAGE SPECIFIC STYLES
   ============================================ */

/* Products Page Hero */
.products-page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-page-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(30, 58, 112, 0.85) 0%,
        rgba(220, 28, 44, 0.75) 100%);
    display: flex;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.products-page-hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.products-page-hero-content .modern-hero-subtitle,
.products-page-hero-content .modern-hero-title,
.products-page-hero-content .modern-hero-description {
    animation: fadeInUp 0.8s ease-out both;
}

.products-page-hero-content .modern-hero-subtitle {
    animation-delay: 0.2s;
}

.products-page-hero-content .modern-hero-title {
    animation-delay: 0.4s;
}

.products-page-hero-content .modern-hero-description {
    animation-delay: 0.6s;
}

/* Products Card */
.products-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.products-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Products Icon Circle */
.products-icon-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91828 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(220, 28, 44, 0.2);
    transition: all 0.3s ease;
}

.products-icon-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 28, 44, 0.3);
}

.products-icon-circle-lg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91828 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(220, 28, 44, 0.2);
    transition: all 0.3s ease;
}

.products-icon-circle-lg:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(220, 28, 44, 0.3);
}

/* Products Feature Card */
.products-feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.products-feature-card:hover {
    box-shadow: 0 15px 40px rgba(220, 28, 44, 0.15);
    transform: translateY(-6px);
    border-color: var(--color-primary);
}

/* Responsive Products Page */
@media (max-width: 768px) {
    .products-page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .products-page-hero-content .modern-hero-title {
        font-size: 2rem;
    }

    .products-card {
        padding: 1.5rem;
    }

    .products-icon-circle {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .products-icon-circle-lg {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 480px) {
    .products-page-hero {
        height: 45vh;
        min-height: 350px;
    }

    .products-page-hero-content .modern-hero-title {
        font-size: 1.5rem;
    }

    .products-page-hero-content .modern-hero-description {
        font-size: 0.95rem;
    }

    .products-card {
        padding: 1.25rem;
    }

    .products-card .flex {
        flex-direction: column;
        gap: 1rem;
    }

    .products-icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .products-icon-circle-lg {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.75rem;
    }

    .products-feature-card {
        padding: 1.25rem;
    }
}

