@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary-red: #db000b;
    --accent-red: #cf2005;
    --dark-red: #9b0600;
    --soft-white: #f9f5f5;
    --pure-white: #ffffff;
    --text-dark: #3a3a3a;
    --text-light: #666666;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(219, 0, 11, 0.1);
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"],
a {
    cursor: pointer;
}

button:disabled,
input:disabled {
    cursor: not-allowed;
}

.user-nav-link,
.social-links-premium a,
.menu-toggle,
.menu-close,
.mobile-nav a,
.footer-social a,
.footer-links a,
.footer-cta,
.btn-submit,
.btn-primary-hero,
.btn-secondary-hero,
.cat-card,
.cat-btn,
.btn-cta-premium,
.btn-cta-secondary,
.radio-card,
.btn-premium-submit,
.news-card-link,
.newsletter-form .btn-subscribe,
.modal-form .btn-subscribe,
.btn-decline,
.close-modal-btn,
.scroll-to-top,
.floating-request-btn,
.user-nav-link.logout-link,
#resendVerifyBtn {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* Header Styles */
.main-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    /* More air initially */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hide {
    display: none !important;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* Reduced from 30px */
    height: 100%;
}

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

.logo-container img {
    height: 80px; /* Reduced from 90px */
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Initial state (White/Clean) when transparent */
.main-header:not(.scrolled) .logo-container img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.main-header.scrolled .logo-container img {
    height: 65px;
}

.logo-container img:hover {
    transform: scale(1.02);
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.8rem; /* Slightly smaller */
    transition: all 0.4s ease;
    padding: 8px 15px; /* Reduced from 10px 20px */
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduced from 1px */
    display: block;
    border-radius: 50px;
    white-space: nowrap;
}

.main-header.scrolled .main-nav a {
    color: var(--text-dark);
    text-shadow: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 5px;
    transition: all 0.4s ease;
}

.main-header.scrolled .main-nav ul {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff !important;
    background: var(--primary-red);
    box-shadow: 0 10px 20px rgba(219, 0, 11, 0.3);
}

.main-header.scrolled .main-nav a.active {
    background: var(--primary-red);
    box-shadow: 0 4px 10px rgba(219, 0, 11, 0.2);
}

.main-header.scrolled .main-nav a:hover {
    color: var(--primary-red) !important;
    background: rgba(0, 0, 0, 0.05);
    box-shadow: none;
}

.main-nav a::after {
    display: none;
    /* Remove the old underline */
}

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

/* User Links (Premium Style) */
.user-links {
    display: flex;
    align-items: center;
    gap: 12px; /* Reduced from 20px */
}

.user-nav-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem; /* Slightly smaller */
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduced from 1px */
    transition: all 0.4s;
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced from 10px */
    padding: 8px 18px; /* Reduced from 10px 25px */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.main-header.scrolled .user-nav-link {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-shadow: none;
}

.main-header.scrolled .user-nav-link i {
    color: var(--primary-red);
}

.user-nav-link i {
    font-size: 1.1rem;
    color: var(--primary-red);
    transition: all 0.3s;
}

.user-nav-link:hover i {
    transform: scale(1.1);
}

/* Admin Link Special Style */
.user-nav-link.admin-link {
    color: var(--primary-red);
    background: rgba(219, 0, 11, 0.05);
    /* Subtle red bg */
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(219, 0, 11, 0.1);
}

.user-nav-link.admin-link:hover {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 4px 10px rgba(219, 0, 11, 0.2);
}

.user-nav-link.admin-link:hover i {
    color: #fff;
}

/* Logout Link (More discreet but premium) */
.user-nav-link.logout-link {
    color: #888;
    font-size: 0.8rem;
    border-left: 1px solid #eee;
    padding-left: 15px;
    margin-left: 5px;
}

.user-nav-link.logout-link:hover {
    color: var(--primary-red);
}

/* Login Link */
.user-nav-link.login-link {
    background: var(--text-dark);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-nav-link.login-link i {
    color: #fff;
}

.user-nav-link.login-link:hover {
    background: var(--primary-red);
    box-shadow: 0 6px 15px rgba(219, 0, 11, 0.3);
    transform: translateY(-2px);
}

.social-links-premium {
    display: flex;
    gap: 10px; /* Reduced from 15px */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 12px; /* Reduced from 8px 15px */
    border-radius: 50px;
}

.social-links-premium a {
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links-premium a:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.main-header.scrolled .social-links-premium {
    background: rgba(0, 0, 0, 0.05);
}

.main-header.scrolled .social-links-premium a {
    color: var(--text-dark);
}

/* Visibility Helpers */
.mobile-only {
    display: none !important;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Prevent header compression on tablet/small laptop */
    @media (min-width: 992px) and (max-width: 1200px) {
        .header-container { padding: 0 20px; gap: 15px; }
        .main-nav ul { gap: 2px; }
        .main-nav a { padding: 8px 12px; font-size: 0.75rem; }
        .user-nav-link { padding: 8px 15px; font-size: 0.75rem; }
        .logo-container img { height: 70px; }
    }
}

/* Menu Badge Toggle */
.menu-toggle {
    background-color: transparent;
    color: var(--primary-red);
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    z-index: 2001;
    font-size: 1.8rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

.menu-toggle.active {
    opacity: 0;
    visibility: hidden;
}

/* Cool Circular Reveal Animation */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--pure-white);
    z-index: 2005;
    visibility: hidden;
    clip-path: circle(0% at calc(100% - 60px) 45px);
    /* Start from where the MENY badge is */
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    visibility: visible;
    clip-path: circle(150% at calc(100% - 60px) 45px);
}

.menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary-red);
    cursor: pointer;
    z-index: 2010;
    transform: rotate(-180deg);
    opacity: 0;
    transition: all 0.4s ease;
    /* Faster close */
}

.mobile-menu.active .menu-close {
    transform: rotate(0);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.4s;
}

.mobile-menu-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    transform: translateY(50px) scale(0.9);
    opacity: 0;
    transition: all 0.4s ease;
    /* Faster close */
}

.mobile-menu.active .mobile-menu-inner {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.3s;
}

.mobile-logo {
    margin-bottom: 2rem;
}

.mobile-logo img {
    height: 80px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.mobile-nav li {
    margin: 0.8rem 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
    /* Immediate close */
}

.mobile-menu.active .mobile-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu.active .mobile-nav li:nth-child(1) {
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-nav li:nth-child(2) {
    transition-delay: 0.6s;
}

.mobile-menu.active .mobile-nav li:nth-child(3) {
    transition-delay: 0.7s;
}

.mobile-menu.active .mobile-nav li:nth-child(4) {
    transition-delay: 0.8s;
}

.mobile-menu.active .mobile-nav li:nth-child(5) {
    transition-delay: 0.85s;
}

.mobile-menu.active .mobile-nav li:nth-child(6) {
    transition-delay: 0.9s;
}

.mobile-menu.active .mobile-nav li:nth-child(7) {
    transition-delay: 0.95s;
}

.mobile-nav a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary-red);
}

.mobile-social {
    display: flex;
    gap: 2.5rem;
}

.mobile-social a {
    font-size: 2rem;
    color: var(--primary-red);
}

@media (max-width: 991px) {
    .main-header {
        background: var(--primary-red) !important; /* Force red background even when scrolled */
        background-color: var(--primary-red) !important;
        backdrop-filter: none !important; /* remove blur to make it solid red */
        box-shadow: none !important; /* no shadow on mobile */
    }

    .header-container {
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container img {
        height: 80px !important;
        /* Large mobile logo */
    }

    .menu-toggle {
        color: var(--pure-white);
    }
    
    .menu-toggle:hover {
        color: var(--pure-white);
    }
}

/* Modern Footer Styles */
.main-footer {
    background-color: #0c0c0c;
    color: var(--soft-white);
    padding: 6rem 0 0;
    margin-top: 8rem;
    position: relative;
    border-top: 4px solid var(--primary-red);
}

.footer-top {
    padding-bottom: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-logo img {
    height: 100px;
    /* Logo in footer */
    width: auto;
    margin-bottom: 2rem;
}

.footer-about {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    /* Slightly squircle for modern look */
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-white);
    font-size: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

/* Official Brand Colors */
.footer-social a[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.footer-social a[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);
}

.footer-social a[aria-label="LinkedIn"]:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.footer-title {
    color: var(--pure-white);
    font-size: 1.1rem;
    /* Slightly smaller for all-caps elegance */
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-red);
}

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

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    color: #999;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-top: 4px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-column p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-red);
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.footer-cta:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(219, 0, 11, 0.3);
}

.footer-bottom {
    background: #080808;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.made-by .accent {
    color: var(--primary-red);
    font-weight: 600;
}

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

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

    .footer-bottom-flex {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .main-footer {
        padding: 4rem 0 0;
        margin-top: 4rem;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        padding-bottom: 3rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: var(--primary-red);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(219, 0, 11, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(219, 0, 11, 0.4);
}

@media (max-width: 991px) {
    .scroll-to-top {
        bottom: 20px;
        right: 16px;
        width: 46px;
        height: 46px;
    }
}

/* Page Hero & Section Styles */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 20px 8rem;
    /* Adjusted for fixed header */
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 6rem 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.wholesale-feature {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-red);
    margin-top: 2rem;
}

.wholesale-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Contact Styles */
/* Contact Styles - Premium Revamp */
.contact-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--pure-white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f1f1f1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfdfd;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    background: #fff;
    box-shadow: 0 10px 20px rgba(219, 0, 11, 0.05);
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--primary-red);
    color: var(--pure-white);
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 10px 20px rgba(219, 0, 11, 0.2);
}

.btn-submit:hover {
    background: #ff000d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(219, 0, 11, 0.3);
}

.contact-info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: var(--pure-white);
    padding: 4rem 3.5rem;
    border-radius: 24px;
    height: fit-content;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--primary-red);
    opacity: 0.15;
    filter: blur(80px);
    border-radius: 50%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.info-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.contact-info-item:hover .info-icon {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 1rem;
    opacity: 0.7;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-item a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.contact-social-mini {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.contact-social-mini a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social-mini a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.map-container {
    margin-top: 6rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 500px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: contrast(1.1) brightness(1.1);
}

@media (max-width: 991px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-padding {
        padding: 4rem 20px;
    }
}

/* Home Hero Styles */
.home-hero {
    height: 90vh;
    /* Slightly taller for more impact */
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    /* Important for parallax overflow */
    margin-top: -1px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    animation: zoomBackground 20s linear infinite alternate;
}

@keyframes zoomBackground {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Subtle overlay pattern for premium feel */
.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 2;
    pointer-events: none;
}

.home-hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 3;
    /* Increased z-index to be above pseudo-elements */
}

.home-hero-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home-hero-content h1 .accent {
    background: linear-gradient(90deg, var(--primary-red), #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.home-hero-content p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary-hero {
    background: var(--pure-white);
    color: var(--primary-red);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25), inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219, 0, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.btn-primary-hero:hover::after {
    opacity: 1;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-red);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--pure-white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary-hero:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.05);
    background: var(--pure-white);
    color: var(--primary-red);
}

.btn-secondary-hero:hover {
    background: var(--pure-white);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
    border-color: var(--pure-white);
    color: var(--primary-red);
}

.btn-primary-hero:active {
    transform: translateY(2px) scale(0.97);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2), inset 0 3px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary-hero:active {
    transform: translateY(2px) scale(0.97);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

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

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

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--pure-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--pure-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--pure-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

@media (max-width: 991px) {
    .home-hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }

    .home-hero::before {
        background-attachment: scroll;
        /* Fixes black background issue on iOS and Safari */
    }

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

    .home-hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: none;
        padding: 16px 30px;
    }
}

/* Global Mobile Fixes */
@media (max-width: 991px) {
    .section-padding {
        padding: 4rem 20px;
    }

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

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        padding: 0 20px;
    }

    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
    }
}

/* --- NEW PREMIUM SECTIONS --- */

/* Value Prop Section */
.value-prop-section {
    background-color: var(--pure-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--soft-white);
    border-radius: 20px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(219, 0, 11, 0.2);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Category Grid Premium */
.categories-section {
    padding: 100px 0;
    background: #f4f4f4;
}

.category-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 50px;
    height: 500px;
}

.cat-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    transition: var(--transition);
}

.cat-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition);
}

.cat-btn {
    background: var(--primary-red);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-card:hover .cat-overlay {
    background: linear-gradient(to top, rgba(219, 0, 11, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.cat-card:hover .cat-title,
.cat-card:hover .cat-btn {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Banner */
.cta-banner {
    background: var(--text-dark);
    padding: 5rem;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-red);
    opacity: 0.1;
    filter: blur(100px);
    border-radius: 50%;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-cta-premium {
    padding: 18px 40px;
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-cta-secondary {
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-cta-premium:hover {
    background: #ff000d;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(219, 0, 11, 0.4);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* --- REVEAL ANIMATIONS --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 991px) {
    .category-grid-premium {
        grid-template-columns: 1fr;
        height: auto;
    }

    .cat-card {
        height: 350px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* --- PAGE LOADER --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    height: 80px;
    width: auto;
    animation: pulseLogo 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 150px;
    height: 4px;
    background: #f1f1f1;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    animation: loadingBar 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes loadingBar {
    0% {
        left: -100%;
    }

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/* --- FLOATING REQUEST BUTTON & TOOLTIP --- */
.floating-request-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-request-container.scroll-active {
    bottom: 100px;
}

.floating-tooltip {
    background: #fff;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    animation: tooltipFadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2s forwards;
    white-space: nowrap;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

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

.floating-request-btn {
    width: 55px;
    height: 55px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(219, 0, 11, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-request-btn i {
    font-size: 1.3rem;
    color: #fff;
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    15% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    30% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pulse animation for the button */
.pulse-button {
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(219, 0, 11, 0.7);
        transform: scale(1);
    }

    15% {
        transform: scale(1.05);
    }

    30% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(219, 0, 11, 0);
    }

    100% {
        transform: scale(1);
    }
}

.floating-request-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ff000d;
    box-shadow: 0 15px 35px rgba(219, 0, 11, 0.4);
}

@keyframes glowLight {
    0% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    100% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Modal Content Variations */
.modal-content.small {
    max-width: 500px;
    height: auto;
    max-height: 90vh;
}

@media (max-width: 768px) {
    .floating-request-container {
        bottom: 20px;
        right: 16px;
    }

    .floating-request-container.scroll-active {
        bottom: 95px;
    }

    .floating-tooltip {
        display: block; /* Nu synlig på mobiler eftersom användaren ville det */
        font-size: 0.95rem;
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .floating-request-btn {
        width: 46px;
        height: 46px;
        padding: 0;
    }

    .floating-request-btn i {
        font-size: 1rem;
    }
}

/* --- PREMIUM SUGGESTION MODAL REVAMP --- */
.radio-group-premium {
    display: flex;
    gap: 1.5rem;
    margin-top: 10px;
}

.radio-card {
    cursor: pointer;
    flex: 1;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card .radio-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 2px solid #f1f3f5;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
}

.radio-card:hover .radio-content {
    border-color: #e9ecef;
    background: #f8f9fa;
}

.radio-card input[type="radio"]:checked+.radio-content {
    border-color: var(--primary-red);
    background: rgba(219, 0, 11, 0.03);
}

.radio-card .custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-card input[type="radio"]:checked+.radio-content .custom-radio {
    border-color: var(--primary-red);
}

.radio-card input[type="radio"]:checked+.radio-content .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: radioPop 0.3s ease;
}

@keyframes radioPop {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.radio-card .radio-text {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: normal;
}

.radio-card .radio-text small {
    display: block;
    color: #888;
    font-weight: 400;
    font-size: 0.85rem;
    margin-top: 2px;
}

.radio-card input[type="radio"]:checked+.radio-content .radio-text {
    color: var(--primary-red);
}

.premium-modal {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.premium-modal.active {
    opacity: 1;
    pointer-events: all;
}

.suggestion-modal {
    display: flex !important;
    flex-direction: row !important;
    max-width: 850px;
    width: 95%;
    height: auto;
    min-height: 480px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-modal.active .suggestion-modal {
    transform: translateY(0);
}

.modal-sidebar {
    flex: 0 0 320px !important;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 50px 40px !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.modal-sidebar h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
}

.modal-sidebar p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.sidebar-icon {
    width: 60px;
    height: 60px;
    background: #db000b;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(219, 0, 11, 0.3);
}

.modal-main {
    flex: 1 !important;
    background: #fff;
    padding: 60px 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.modal-header-clean {
    position: absolute;
    top: 25px;
    right: 30px;
}

.modal-header-clean .modal-close {
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: #333;
    line-height: 0.7;
    transition: all 0.3s;
}

.modal-header-clean .modal-close:hover {
    color: #db000b;
    transform: rotate(90deg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 14px;
    color: #ddd;
    font-size: 0.9rem;
}

.form-control-premium {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border: 2px solid #f5f5f5;
    background: #fafafa;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control-premium:focus {
    outline: none;
    border-color: #db000b;
    background: #fff;
    box-shadow: 0 8px 20px rgba(219, 0, 11, 0.06);
}

.btn-premium-submit {
    width: 100%;
    background: #db000b;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.btn-premium-submit:hover {
    background: #ff000d;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(219, 0, 11, 0.3);
}

@media (max-width: 900px) {
    .suggestion-modal {
        flex-direction: column !important;
        height: auto;
        max-height: 90vh;
        width: 92%;
        overflow-y: auto !important;
        border-radius: 20px;
    }

    .modal-sidebar {
        flex: 0 0 auto !important;
        padding: 40px 30px !important;
    }

    .modal-sidebar h2 {
        font-size: 1.8rem;
    }

    .modal-main {
        padding: 30px !important;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- News Cards --- */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.news-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}
.news-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}
.news-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}
.news-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* ==========================================================================
   Newsletter Components
   ========================================================================== */
.newsletter-banner {
    background: var(--primary-red, #db000b);
    color: #fff;
    padding: 40px 0;
    margin-top: auto;
    margin-bottom: 50px; /* Added space below to create 'andrum' */
}
.newsletter-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.newsletter-text {
    flex: 1;
    min-width: 300px;
}
.newsletter-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.newsletter-text p {
    font-size: 1rem;
    opacity: 0.9;
}
.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    position: relative;
    max-width: 500px;
    width: 100%;
}
.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}
.newsletter-form .btn-subscribe {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-form .btn-subscribe:hover {
    background: #333;
}
.newsletter-status {
    width: 100%;
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Modal Overlay */
.newsletter-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(4px);
    padding: 20px;
}
.newsletter-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}
.newsletter-modal-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.newsletter-modal-overlay.show .newsletter-modal-card {
    transform: translateY(0) scale(1);
}
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f3f5;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #555;
}
.close-modal-btn:hover {
    background: #e9ecef;
    color: #111;
}
.newsletter-modal-icon {
    width: 70px;
    height: 70px;
    background: #ffe3e4;
    color: var(--primary-red, #db000b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.newsletter-modal-card h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #111;
}
.newsletter-modal-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}
.modal-form {
    flex-direction: column;
}
.modal-form input {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    width: 100%;
}
.modal-form input:focus {
    background: #fff;
    border-color: var(--primary-red, #db000b);
}
.modal-form .btn-subscribe {
    background: var(--primary-red, #db000b);
    width: 100%;
}
.modal-form .btn-subscribe:hover {
    background: #c2000a;
}
.btn-decline {
    background: none;
    border: none;
    color: #888;
    margin-top: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: 0.3s;
}
.btn-decline:hover {
    color: #555;
}
@media (max-width: 768px) {
    .newsletter-banner-content {
        flex-direction: column;
        text-align: center;
    }
}
