:root {
    /* Colors from source document */
    --primary-gold: #B59C6E;
    --secondary-gold: #9C8359;
    --tertiary-gold: #B6A162;
    --light-gold: #CAB36E;
    --dark-text: #141414;
    --medium-text: #4a4a4a;
    --light-blue: #D8EBF2;
    --accent-blue: #0A2846;

    /* Background colors - LIGHT THEME */
    --light-bg: #ffffff;
    --lighter-bg: #f8f8f8;
    --text-dark: #141414;
    --text-muted: #141414;

    /* Glass effects - adjusted for light theme */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(181, 156, 110, 0.2);
    --card-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Canvas Background */
#bg-canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark-text), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #141414;
}

h3 {
    font-size: 1.8rem;
    color: #141414;
}

h4 {
    font-size: 1.3rem;
    color: #141414;
    margin-top: 1.5rem;
}

.section-desc {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 156, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(181, 156, 110, 0.3);
}

/* Navigation */
/* Modern Floating Navigation */
/* ==========================================================================
   Navigation & Top Bar - Ultra-Premium Design
   ========================================================================== */

/* Hide spacer to let video go top to bottom */
/* Restore spacer for non-hero pages or if needed */
.nav-spacer {
    height: 0;
    display: none;
}

/* Top Info Bar - Transparent & Sleek */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    /* Let video show through */
    z-index: 2002;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    /* Push to right for cleaner look */
    align-items: center;
    gap: 30px;
    font-size: 0.8rem;
    padding: 0 40px;
}

.top-bar-content span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.top-bar-content span:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(181, 156, 110, 0.5);
}

.top-bar-content i {
    color: var(--primary-gold);
}

.separator {
    display: none;
    /* Cleaner without vertical bars */
}

/* Navbar - The Floating Glass Island */
.navbar {
    position: fixed;
    /* Fixed at the top always */
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    z-index: 10005;
    /* High enough to be over backdrop */
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 40px;
    border-bottom: 1px solid rgba(181, 156, 110, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Glass Panel Effect for the Container itself in "Normal" view? 
       No, let's keep it clean. */
}

/* Logo - Big & Bold */
.logo {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo span {
    color: #b59c6e;
    filter: drop-shadow(0 0 5px rgba(181, 156, 110, 0.2));
}

/* Navigation Links - Centered Pill */
.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: block;
}

.nav-item.active>a,
.nav-item a:hover {
    color: #000 !important;
    background: var(--primary-gold) !important;
    box-shadow: 0 0 20px rgba(181, 156, 110, 0.6);
}


/* Active Highlight Dot Override - remove old style */
.nav-item.active>a::after {
    display: none;
}

/* Device-specific visibility */
@media screen and (min-width: 769px) {

    .mobile-only,
    .nav-section-title {
        display: none !important;
    }

    /* Hide icons on desktop for a cleaner look */
    .nav-links .nav-item a i {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Action Buttons (Right) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Calculator Button - Glowing Pulsating Gold */
.btn-calcul {
    background: #b59c6e;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 0 20px rgba(181, 156, 110, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}



.btn-calcul:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(181, 156, 110, 0.8);
    color: #000;
}

.btn-calcul:hover i {
    color: #000;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.icon-links {
    display: flex;
    gap: 15px;
}

.icon-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-links a:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(181, 156, 110, 0.5);
}

/* Dropdown Menu - Sleek Glass */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(181, 156, 110, 0.3);
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    color: #fff;
    background: transparent;
    padding: 10px 15px;
    border-radius: 8px;
    text-transform: none;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
    box-shadow: none;
}

/* Burger */
.burger {
    display: none;
}

.burger div {
    background-color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Dark overlay for readability */
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 92;
    /* Bring content above video and canvas */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 220px;
    /* Increased top padding to move content lower */
    color: #fff;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    /* Ensure fill is white */
    font-weight: 900 !important;
    -webkit-text-stroke: 0;
    text-shadow: none;
    opacity: 1;
}

.hero-text .subtitle {
    font-size: 1.35rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Brand Ticker Styles */
.brand-ticker-wrap {
    background: rgba(22, 22, 22, 0.95);
    border-top: 1px solid rgba(181, 156, 110, 0.3);
    border-bottom: 1px solid rgba(181, 156, 110, 0.3);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 92;
}

.brand-ticker {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-track {
    display: flex;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    min-width: max-content;
}

.brand-logo {
    height: 40px;
    width: auto;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    /* Forces logo to be white */
}

.brand-logo:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(181, 156, 110, 0.8));
    /* White + Gold Glow */
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section General */
.section {
    padding: 40px 0;
}

.dark-bg {
    background: #f4f2f0;
}

/* Reduced Spacing between Info Cards and Ceramic Section */
#info-cards {
    padding-bottom: 0px;
}

#info-cards .info-card p {
    color: var(--text-dark);
}

#ceramic {
    padding-top: 0px;
}

/* Glass Card Styles */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(181, 156, 110, 0.6);
    /* Uniform gold border */
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.1s ease-out;
    box-shadow: var(--card-shadow);
}

/* Ceramic Section Specifics - Match Info Cards */
#ceramic {
    padding-top: 0;
    padding-bottom: 0px;
    background: #ffffff;
}

#ceramic .glass-card {
    background: #ffffff;
    backdrop-filter: none;
    border: 2px solid rgba(181, 156, 110, 0.6);
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

#ceramic .glass-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
}



#prices .glass-card,
#prices .lead-text,
#prices p:not(.warning-text):not(.contact-cta p) {
    color: var(--text-dark);
    font-size: 1.1rem;
}

#ceramic .glass-card ul li {
    color: var(--text-dark);
    text-align: left;
    font-size: 1.1rem;
}


.glass-panel {
    background: rgba(244, 242, 240, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(181, 156, 110, 0.15);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.card {
    position: relative;
    overflow: hidden;
    /* Ensure bg image doesn't spill if radius is used */
}

/* Specific Card Backgrounds for Process Section - Deep Dark Style */
#process .method-card {
    background-color: #070707;
    /* Premium extremely dark grey/black */
    border: 2px solid rgba(181, 156, 110, 0.4);
    /* Refined gold border */
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* Centers the icon and title */
    min-height: 500px;
    /* Increased height for better proportions */
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    background-repeat: no-repeat;
    background-position: center bottom !important;
    background-size: 100% auto !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

#process .method-card:hover {
    transform: translateY(-10px);
    border-color: rgba(181, 156, 110, 0.8);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(181, 156, 110, 0.2);
}

/* Individual Card Background Images with Overlay */
#process .method-card:nth-child(1) {
    background-image: linear-gradient(to bottom, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.7)), url('../public/card-bg-1.png');
}

#process .method-card:nth-child(2) {
    background-image: linear-gradient(to bottom, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.7)), url('../public/card-bg-2.png');
}

#process .method-card:nth-child(3) {
    background-image: linear-gradient(to bottom, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.7)), url('../public/card-bg-3.png');
}

/* Custom override for Personal Delivery Card, Courier Delivery Card, and Pickup Delivery Card */
#process .personal-delivery-card,
#process .courier-delivery-card,
#process .pickup-delivery-card {
    background-image: none !important;
    background-color: #373131 !important;
    /* Restored border and box-shadow by removing the 'none' overrides */
}

#process .personal-delivery-card .floating-img,
#process .courier-delivery-card .floating-img,
#process .pickup-delivery-card .floating-img {
    height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.3));
    animation: floatCloud 6s ease-in-out infinite;
}

/* Icon Container Style */
#process .method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(181, 156, 110, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#process .method-icon i {
    font-size: 2rem;
    background: linear-gradient(to bottom right, #e8d5a7, #b59c6e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#process .method-card:hover .method-icon {
    border-color: rgba(181, 156, 110, 0.6);
    box-shadow: 0 0 20px rgba(181, 156, 110, 0.15);
}

#process .method-card:hover .method-icon i {
    transform: scale(1.15);
}

/* Phone Link in Card */
.card-phone-link {
    color: #B59C6E;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.card-phone-link:hover {
    color: #e8d5a7;
    text-shadow: 0 0 10px rgba(181, 156, 110, 0.5);
}

/* Typography Overrides for Dark Card */
#process .method-card h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

#process .method-card p {
    color: #ffffff !important;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: none;
    background: transparent;
    text-align: left;
    width: 100%;
}

#process .method-card .title-underline {
    width: 50px;
    height: 4px;
    background-color: #b59c6e;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: inline-block;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '\f058';
    /* Font Awesome Circle Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.1rem;
    /* Slightly larger */
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(181, 156, 110, 0.15), rgba(156, 131, 89, 0.08));
}

.cta-box {
    text-align: center;
    padding: 50px;
}

.cta-box h2 {
    color: var(--accent-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.3rem;
    color: var(--text-muted);
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Custom styling for Process Cards with Gold Background */
/* Process Section & Wheels Section */
/* Process Section & Wheels Section */
#process,
#wheels,
#wholesale,
#contact {
    background: #343031;
    color: #fff;
}

#process .section-title,
#process .section-desc,
#wheels .section-title,
#wheels .section-desc,
#contact .section-title,
#contact .section-desc {
    color: #ffffff;
}

/* Ensure consistent sizing */
#prices .section-title,
#process .section-title,
#contact .section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {

    #prices .section-title,
    #process .section-title,
    #contact .section-title {
        font-size: 2rem;
    }
}

/* Footer Section */
.footer-section {
    /* Background handled by ID #contact */
    background: transparent;
    padding-bottom: 30px;
    position: relative;
    z-index: 100;
}

/* Material Grid Layout - Stacked for Slimmer Look */
.material-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column */
    gap: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 50px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-top: 5px;
    min-width: 30px;
}

.info-item h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.info-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-gold);
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    opacity: 0.6;
}

/* Chatbot Styles Overrides for Polish */
.chatbot-widget {
    border: 2px solid rgba(181, 156, 110, 0.3);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.chat-header {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

.search-container {
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(181, 156, 110, 0.2);
}

.search-container h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    font-size: 1.8rem;
    text-align: center;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(181, 156, 110, 0.2);
}

.search-btn {
    width: 100%;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.modal-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.chatbot-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

#mute-btn,
#close-chat {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.2s;
    padding: 5px;
}

#mute-btn:hover,
#close-chat:hover {
    opacity: 1;
    transform: scale(1.1);
}

.chatbot-input button,
#voice-btn {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1.1rem;
    flex-shrink: 0;
}

#voice-btn.listening {
    background: #e74c3c;
    animation: voicePulse 1.5s infinite;
}

@keyframes voicePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.chatbot-input button:hover,
#voice-btn:hover {
    transform: scale(1.1);
}

/* Hero Info Box */
.hero-info-box {
    margin-top: 2.5rem;
    padding: 0;
    background: transparent;
    border: none;
    /* For centered layout, maybe bottom border or just spacing */
    border-left: none;
    border-bottom: none;
    /* Removed extra line */
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-info-box p {
    color: #f0f0f0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.phone-link {
    display: inline-flex;
    /* Changed to flex for alignment */
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 3.5rem;
    /* Increased size significantly */
    font-weight: 800;
    color: var(--primary-gold);
    /* Gold text for phone on dark bg */
    margin: 0.5rem 0 1rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    background: none;
}

.phone-icons {
    display: inline-flex;
    gap: 15px;
    font-size: 0.5em;
    /* Icons relative to the huge number */
    color: #fff;
    vertical-align: middle;
}

.phone-icons i:hover {
    color: var(--primary-gold);
    transform: scale(1.2);
    transition: transform 0.2s;
}

.phone-link:hover {
    color: #fff;
    transform: scale(1.02);
    /* Subtle scale for the whole link */
}


.phone-link:hover {
    color: var(--secondary-gold);
}

.small-note {
    font-size: 1.1rem;
    color: #ffffff;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.small-note::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
}

/* Highlight Section (Wholesale) - Redesign */
.highlight-section {
    background: #343031;
    position: relative;
    overflow: hidden;
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.highlight-text {
    text-align: left;
}

.badge {
    background: var(--primary-gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 1px;
    animation: glowPulse 2s infinite;
}

.highlight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.highlight-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.6;
}

.highlight-text .bold-text {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.highlight-img {
    text-align: center;
    position: relative;
}

.highlight-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
    animation: floatCloud 6s ease-in-out infinite;
}

@media (max-width: 968px) {
    .highlight-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-img {
        order: -1;
    }

    .highlight-text {
        text-align: center;
    }
}

/* Nav Button */
.nav-btn {
    background: #ffffff;
    color: var(--primary-gold) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: #343031;
}

/* Content Typography */
.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-cta {
    background: var(--lighter-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-gold);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.warning-text {
    color: #e74c3c;
    font-weight: 600;
    margin-top: 1rem;
}

.signature {
    margin-top: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-gold);
}

/* Badges */
/* The old .badge definition was removed as it was replaced by the new one within the highlight section. */

.big-card {
    padding: 3rem;
}

@media (max-width: 768px) {
    .big-card {
        padding: 1.5rem;
    }

    .hero-info-box {
        padding: 1.5rem;
    }

    .phone-link {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 25px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2.section-title {
        font-size: 2rem;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-text .subtitle {
        max-width: 100%;
    }

    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        left: -100%;
        top: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0 !important;
        gap: 0;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.9);
        transition: left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10000;
        /* Lower than burger X (20000) but higher than any page content */
        /* Slightly lower than burger to keep X visible */
        border-right: 1px solid rgba(181, 156, 110, 0.3);
        text-align: left;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0 30px 30px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 9998;
        /* Just below nav-links */
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Adjust padding to account for the burger/logo height */
    .nav-links {
        padding-top: 100px !important;
    }

    /* Force burger to stay on top when menu is active */
    .burger.toggle {
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 20000 !important;
        background: rgba(181, 156, 110, 0.2) !important;
        backdrop-filter: blur(5px) !important;
        border-radius: 12px !important;
        padding: 12px !important;
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid rgba(181, 156, 110, 0.5) !important;
    }

    .burger.toggle .line1,
    .burger.toggle .line2,
    .burger.toggle .line3 {
        background-color: #b59c6e !important;
        width: 25px !important;
        height: 3px !important;
    }

    /* Hide logo when menu is active */
    .burger.toggle+.logo {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }



    /* Section Titles */
    .nav-section-title {
        display: block;
        padding: 30px 30px 10px 30px;
        /* Posunuté nižšie podľa požiadavky */
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #666;
        letter-spacing: 1.5px;
    }

    .nav-item {
        margin: 0;
    }

    .nav-item a {
        padding: 12px 30px !important;
        font-size: 1rem !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #ffffff !important;
        /* Pure white for better contrast */
        display: flex !important;
        align-items: center;
        gap: 12px;
        transition: all 0.2s ease;
    }

    .nav-item a i {
        display: block !important;
        /* Show icons in mobile menu as requested */
        width: 20px;
        color: #b59c6e;
        font-size: 0.9rem;
    }

    /* Show mobile-only elements in mobile view */
    .mobile-only,
    .nav-section-title {
        display: block !important;
    }

    .nav-item a:hover,
    .nav-item.active a {
        color: #ccc !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* Extra padding at the bottom of the list for contacts */
    .nav-links::after {
        content: '';
        display: block;
        height: 100px;
        width: 100%;
    }

    /* Contact Block in Menu */
    .nav-contact-item {
        padding: 10px 30px 30px 30px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .nav-contact-item a {
        color: #aaa;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .nav-contact-item a i {
        color: #b59c6e;
    }

    .nav-contact-item a:hover {
        color: #fff;
    }

    .burger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 10010;
        /* Above everything */
        padding: 5px;
        position: relative;
    }

    .burger div {
        background-color: #b59c6e !important;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .material-columns {
        grid-template-columns: 1fr;
    }

    .highlight-content {
        grid-template-columns: 1fr;
    }

    .highlight-img {
        order: -1;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .hero-info-box {
        margin-top: 2rem;
        padding: 0 15px;
    }

    .prices-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem !important;
        word-wrap: break-word;
    }

    .hero-text .subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .big-card {
        padding: 20px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .chatbot-widget {
        width: calc(100vw - 40px);
        right: 20px;
        top: 20px !important;
        bottom: auto !important;
        height: 45vh !important;
        position: fixed !important;
    }

    .chat-toggle-btn {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-content {
        padding-top: 120px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .info-card,
    .method-card,
    .contact-card-modern {
        padding: 20px !important;
        min-height: auto !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2.section-title {
        font-size: 1.6rem !important;
    }

    .phone-link {
        font-size: 1.8rem;
        /* Smaller phone number on mobile */
    }

    .container {
        padding: 0 15px;
    }

    /* Ensure text in hero is centered on mobile */
    .hero-text {
        text-align: center;
        width: 100%;
    }
}

/* Info Cards Section - Light Theme */
#info-cards {
    background-color: #ffffff;
    padding: 80px 0 0 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.info-card {
    background: #ffffff;
    border-radius: 24px;
    /* Match process section */
    padding: 40px;
    /* Match process section */
    min-height: 450px;
    /* Match process section height */
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Base shadow */
    transition: box-shadow 0.3s ease;
    /* No transform transition, Tilt handles it */
    border: 2px solid rgba(181, 156, 110, 0.6);
    /* Gold border default */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.info-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    /* Stronger lift shadow */
    border-color: rgba(181, 156, 110, 0.8);
    /* Strong Gold on hover */
}

.info-card img {
    height: 180px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.3));
    animation: floatCloud 6s ease-in-out infinite;
}

@keyframes floatCloud {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.info-card h3 {
    color: var(--text-dark) !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card .title-underline {
    width: 50px;
    height: 4px;
    background-color: #b59c6e;
    /* Gold accent color */
    margin: 0 auto 20px;
    border-radius: 2px;
}

.info-card p {
    color: var(--text-dark) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 480px) {
    .info-card p {
        text-align: center;
    }
}

/* Hero Intro Style Adjustment */
.hero-intro {
    font-size: 1.6rem;
    color: #f0f0f0;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
}

.hero-text h1 {
    margin-top: 0;
    font-size: 4.5rem !important;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800 !important;
    text-transform: none;
    /* Only caps where typed in HTML */
}

.hero-text .subtitle {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #f0f0f0;
}

/* Video CTA in Process Section */
.video-cta {
    text-align: center;
    margin-bottom: 40px;
    margin-top: -10px;
}

.video-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid rgba(181, 156, 110, 0.3);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-cta a:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(181, 156, 110, 0.3);
}

.video-cta i {
    font-size: 1.5rem;
    animation: pulse-gold 2s infinite;
    border-radius: 50%;
    /* Ensure the icon itself (if background) is round */
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 156, 110, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(181, 156, 110, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(181, 156, 110, 0);
    }
}

/* Video Modal Styles */
.video-modal-content {
    max-width: 1100px !important;
    width: 95% !important;
    padding: 30px;
    background: #000 !important;
    position: relative;
    border: 3px solid var(--primary-gold);
    backdrop-filter: none;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

.close-video-modal {
    color: #ff4444;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 100;
    line-height: 1;
}

.close-video-modal:hover,
.close-video-modal:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

/* Top Alert Bar */
.top-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #d32f2f;
    color: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.top-alert.hidden {
    transform: translateY(-100%);
}

.alert-marquee-wrapper {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.alert-text {
    display: inline-block;
    padding-left: 100%;
    animation: alert-scroll 20s linear infinite;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes alert-scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.close-alert-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    padding: 5px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-alert-btn:hover {
    opacity: 1;
}



/* New Prices Section Layout */
.prices-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.prices-text-col {
    text-align: left;
}

.prices-text-col .lead-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.prices-contact-col {
    position: relative;
}

.contact-card-modern {
    background: #ffffff;
    border: 2px solid rgba(181, 156, 110, 0.6);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card-modern h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-card-modern .phone-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
    margin: 15px 0;
    text-decoration: none;
    transition: transform 0.3s;
}

.contact-card-modern .phone-large:hover {
    transform: scale(1.05);
}

.contact-card-modern .email-link {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .prices-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card-modern {
        padding: 30px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 30000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a !important;
    margin: auto;
    padding: 30px !important;
    border: 1px solid rgba(181, 156, 110, 0.4) !important;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modal-pop 0.3s ease-out;
    color: #e0e0e0 !important;
}

@keyframes modal-pop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .modal {
        align-items: flex-start !important;
        padding-top: 20px;
        overflow-y: auto !important;
    }

    .modal-content {
        margin: 0 auto 30px auto !important;
    }
}

.close-modal {
    color: #ff4444;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 101;
}

.close-modal:hover {
    color: #ff0000;
    transform: scale(1.1);
}

.close-material-modal {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    color: #b59c6e !important;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: #e0e0e0 !important;
    font-size: 1rem;
}

.modal-content h4 {
    color: #b59c6e !important;
}

.price-search-form .form-group {
    margin-bottom: 20px;
    position: relative;
    /* Context for absolute arrow */
}

.price-search-form input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #999;
    /* Made border more visible */
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.price-search-form input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(181, 156, 110, 0.5);
    /* Stronger glow */
}

.input-pointer {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: blinkArrow 1.5s infinite;
    pointer-events: none;
}

/* Hide arrow when input is focused or has content (simplified to focus for now) */
.price-search-form input[type="text"]:focus+.input-pointer {
    display: none;
}

@keyframes blinkArrow {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }

    50% {
        opacity: 0.4;
        transform: translateY(-50%) translateX(10px);
    }
}

.price-search-form .search-btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Market Alert Box */
.market-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(231, 76, 60, 0.08);
    /* Light Red Background */
    border-left: 4px solid #e74c3c;
    /* Red border */
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 30px;
    transition: all 0.3s ease;
    max-width: 90%;
}

.market-notice:hover {
    background: rgba(231, 76, 60, 0.15);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.market-notice i {
    font-size: 1.4rem;
    color: #e74c3c;
    /* Red icon */
}

.market-notice p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* Price Buttons */
.price-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Material Modal Content */
/* Material Modal Content Wrapper - No Scroll Here */
.big-modal-content {
    max-width: 600px;
    width: 95%;
    max-height: 95vh;
    /* Just a ceiling */
    overflow: hidden;
    /* Prevent body scroll */
    padding-right: 20px;
    /* Adjust padding to avoid clipping close button loop */
    display: flex;
    flex-direction: column;
}

/* Scrollable Container Inside Modal */
.material-list-container {
    overflow-y: auto;
    max-height: 80vh;
    /* Control height here */
    padding-right: 10px;
    /* Space for scrollbar */
    padding-top: 10px;
}

/* Custom Scrollbar for Inner Container */
.material-list-container::-webkit-scrollbar {
    width: 6px;
}

.material-list-container::-webkit-scrollbar-track {
    background: transparent;
}

.material-list-container::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.material-list-container::-webkit-scrollbar-thumb:hover {
    background-color: #444;
}

/* Custom Scrollbar for Modal */
.big-modal-content::-webkit-scrollbar {
    width: 6px;
}

.big-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.big-modal-content::-webkit-scrollbar-thumb {
    background-color: #333;
    /* Dark grey color */
    border-radius: 20px;
    border: 2px solid transparent;
    /* Padding around thumb */
    background-clip: content-box;
}

.big-modal-content::-webkit-scrollbar-thumb:hover {
    background-color: #444;
}

/* Material Cards Styling */
/* Material Cards Styling - Light Corporate Theme */
.material-section {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(181, 156, 110, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(181, 156, 110, 0.2);
}

/* Price List Header (Label Row) */
.price-list-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #e0e0e0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-list-header span:last-child {
    text-align: right;
    min-width: 80px;
}

/* Simple Text Header */


.mat-icon {
    display: none !important;
}

.mat-header h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: none;
    border: none;
    padding: 0;
    color: #b59c6e;
}

/* Unified Gold Accents - Full border now enabled */

.mat-header {
    color: #e0e0e0;
    display: block;
    text-align: left;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(181, 156, 110, 0.2);
}

/* Clean List Alignment - Dark Mode */
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-list li span:first-child {
    color: #e0e0e0;
    font-size: 1rem;
    flex: 1;
    text-align: left;
    padding-right: 20px;
    font-weight: 500;
}

.price-list li strong {
    font-size: 1.15rem;
    color: #fff;
    white-space: nowrap;
    text-align: right;
    min-width: 80px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* Opening Hours Badge */
.opening-hours-badge {
    display: inline-block;
    background: var(--text-dark);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.opening-hours-badge i {
    color: var(--primary-gold);
    margin-right: 8px;
}

/* Price Disclaimer in Modal */
.price-disclaimer {
    margin-top: 25px;
    padding: 15px;
    background: rgba(231, 76, 60, 0.08);
    /* Light Red Background */
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    /* Red Border */
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.5;
}

.price-disclaimer strong {
    color: #c0392b;
    /* Dark Red Text */
}

/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 350px;
    height: 550px;
    /* Fixed height for consistency */
    max-height: 80vh;
    /* Prevent overflow on small screens */
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(181, 156, 110, 0.3);
    display: none;
    flex-direction: column;
    z-index: 9998;
    overflow: hidden;
    /* Ensure border-radius clips children */
}

.chatbot-widget.active {
    display: flex;
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-info-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chat-avatar i {
    font-size: 1.1rem;
    color: #fff;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border: 2px solid #8e7343;
    /* Matches average bg color */
    border-radius: 50%;
}

.chat-text {
    display: flex;
    flex-direction: column;
}

.chat-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.status-msg {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

#close-chat {
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    background: none;
    border: none;
}

#chatbot-messages {
    flex: 1;
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-message {
    background: #efefef;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-message {
    background: var(--primary-gold);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chatbot-input {
    padding: 10px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    outline: none;
}

.chat-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(181, 156, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    border: none;
    cursor: pointer;
    z-index: 9990;
    transition: transform 0.3s ease;
    animation: btnPulse 2s infinite;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    animation: none;
}

/* Chatbot Control Buttons (Unified Style) */
#voice-btn,
#send-btn {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

#send-btn i {
    transform: translate(-2px, 2px);
    line-height: 1;
    /* Optical centering for asymmetry of the paper plane icon */
}

#voice-btn:hover,
#send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(181, 156, 110, 0.3);
}

#voice-btn.listening {
    background: #e74c3c;
    color: #fff;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
    animation: voicePulse 1.5s infinite;
}

@keyframes voicePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.chat-help-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(181, 156, 110, 0.2);
    opacity: 0;
    pointer-events: none;
    /* 32s cycle: 30s wait, 2s show */
    animation: showTooltip 32s infinite;
    animation-delay: 2s;
    /* Initial short delay just in case */
}

/* Tooltip Arrow */
.chat-help-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 156, 110, 0.7);
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(181, 156, 110, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(181, 156, 110, 0);
        transform: scale(1);
    }
}

@keyframes showTooltip {

    0%,
    93% {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }

    94%,
    99% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }
}

/* Wheels Section Specific Overrides for Dark Mode */
#wheels .battery-info-col h3 {
    color: #fff;
    margin-bottom: 25px;
    /* Added spacing below headings */
}

/* Fix spacing between blocks where text was removed */
#wheels .battery-block {
    margin-bottom: 25px;
    /* Reduced vertical spacing */
}

#wheels .battery-block:last-child {
    margin-bottom: 0;
}

/* Match Battery List Style - Dark Mode */
#wheels .battery-list li {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: none;
    /* Reset full border */
    border-left: 3px solid var(--primary-gold);
    /* Restore left accent */
    border-radius: 8px;
    /* Maintain radius */
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

#wheels .battery-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#wheels .battery-list li::before {
    color: var(--primary-gold);
}

/* Match Benefits Grid Style - Dark Mode */
#wheels .benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

#wheels .benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

#wheels .benefit-item strong {
    color: #fff;
}

#wheels .benefit-item span {
    color: #ccc;
}

/* Match Steps Style - Dark Mode */
#wheels .steps-simple {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 25px;
}

#wheels .steps-simple div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #fff;
}

/* Match B2B Highlight Style - Dark Mode Adaptation */
/* To make it pop like the dark one on white, we use a lighter/glass dark on dark */
#wheels .b2b-highlight {
    background: #343031;
    color: #ffffff;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

#wheels .b2b-highlight p {
    color: #ffffff;
}

#wheels .b2b-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(181, 156, 110, 0.1), transparent);
    pointer-events: none;
}

#wheels .b2b-highlight h4 {
    color: var(--primary-gold);
}

/* Eco & Warning Boxes */
#wheels .eco-box {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
}

#wheels .eco-box p {
    color: #2ecc71;
    font-weight: 500;
}

#wheels .warning-box {
    background: rgba(231, 76, 60, 0.15);
    border-left: 4px solid #e74c3c;
}

#wheels .warning-box h4 {
    color: #e74c3c;
}

#wheels .warning-box p {
    color: #ff8a80;
    font-weight: 500;
}

#wheels .battery-price-tag {
    left: 20px;
    right: auto;
}

/* Wholesale Section Dark Mode Overrides */
#wholesale .highlight-text h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

#wholesale .highlight-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
}

#wholesale .highlight-text .bold-text {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
}

#wholesale .btn {
    font-size: 1rem;
    padding: 12px 30px;
}


/* Animated Badge for Wholesale Section */
#wholesale .badge {
    font-size: 1.1rem;
    padding: 10px 25px;
    animation: glowPulse 2s infinite;
    background: var(--primary-gold);
    color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(181, 156, 110, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(181, 156, 110, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(181, 156, 110, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(181, 156, 110, 0);
    }
}

/* Business Card Style for Team */
/* Business Card Style for Team - Dynamic Slanted Design */
.business-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 180px;
    /* Balanced height */
    isolation: isolate;
}

/* Decorative Gold Background Element behind text */
.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(181, 156, 110, 0.05) 0%, transparent 100%);
    z-index: -1;
}

/* Gold Accent Line */
.business-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.5;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(181, 156, 110, 0.15);
}

/* Image & Video styling - Angled Cut */
.business-card img,
.business-card video {
    width: 45%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border: none;
    border-radius: 0;
    margin: 0;
    /* Slanted Clip Path */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    transition: transform 0.5s ease;
    filter: sepia(10%);
    /* Slight warm tone */
}

/* Hover effect */
.business-card:hover img,
.business-card:hover video {
    transform: scale(1.05);
}

.business-card-info {
    padding: 0 20px 0 0;
    /* No left padding because clip-path creates space */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 2;
    margin-left: -20px;
    /* Pull text closer to the slanted image */
}

.business-card-info h4 {
    color: var(--dark-text);
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.business-card-info p {
    color: var(--primary-gold);
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-card-info p::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

@media (max-width: 480px) {

    .business-card img,
    .business-card video {
        width: 50%;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    }

    .business-card-info {
        margin-left: -10px;
    }

    .business-card-info h4 {
        font-size: 1.3rem;
    }
}

/* Specific override for Price Modal Close Button */
#price-modal .close-modal {
    color: #ff3b3b !important;
    opacity: 0.8;
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    transition: all 0.3s ease;
    z-index: 10;
}

#price-modal .close-modal:hover {
    color: #ff0000 !important;
    opacity: 1;
    transform: scale(1.1);
}

/* Modal Responsiveness */
@media (max-width: 768px) {
    #price-modal .modal-content {
        width: 95% !important;
        margin: 10% auto;
        padding: 25px;
        max-height: 85vh;
        overflow-y: auto;
    }

    #price-modal h3 {
        font-size: 1.5rem !important;
    }
}

/* Route Link Styling */
.route-link {
    color: #b59c6e !important;
    /* Gold color */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.route-link i {
    font-size: 1.1rem;
}

.route-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(181, 156, 110, 0.6);
}

/* Chatbot Mobile Responsiveness */
@media (max-width: 480px) {
    .chatbot-widget {
        width: 94%;
        right: auto;
        left: 3%;
        top: 10px !important;
        bottom: auto !important;
        /* Position at top to avoid keyboard */
        border-radius: 20px;
        height: 42vh !important;
        /* Fixed height for stability */
        position: fixed !important;
        z-index: 99999;
    }

    .chat-toggle-btn {
        bottom: 15px;
        right: 15px;
    }
}

/* Relocate Top Alert (Red Line) to Bottom - Fixes overlap issue */
#top-alert {
    top: auto !important;
    bottom: 0 !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    z-index: 20000 !important;
    background: #e74c3c;
    color: #fff;
    width: 100%;
    padding: 15px 0;
    /* Slightly taller */
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

#top-alert.hidden {
    display: none !important;
}

.alert-marquee-wrapper {
    flex: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.alert-text {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.close-alert-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-alert-btn:hover {
    opacity: 1;
}

/* New Phone & Icons Styling in Hero */
.phone-display-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.phone-number-link {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    text-decoration: none;
    line-height: 1;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.phone-number-link:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(181, 156, 110, 0.4);
    color: #fff;
}

.action-icons {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.action-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.action-icon.sms:hover {
    background: #FFD700;
    /* Gold/Yellowish for SMS context often neutral or green, but Gold fits theme */
    color: #000;
    border-color: #FFD700;
}

.action-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.action-icon.viber:hover {
    background: #7360f2;
    border-color: #7360f2;
    color: #fff;
}

/* Responsive adjustment for phone number */
@media (max-width: 768px) {
    .phone-number-link {
        font-size: 2.5rem;
    }

    .action-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.alert-marquee-wrapper {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    /* Slower speed */
}

.marquee-item {
    padding-right: 50px;
    /* Gap between messages */
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    /* Uppercase text */
    letter-spacing: 1px;
}

/* Push hero content up to avoid overlap with bottom alert */
.hero {
    padding-bottom: 250px !important;
}

/* =========================================
   CRITICAL MOBILE FIXES - ADDED BY AG
   ========================================= */

@media screen and (max-width: 768px) {

    /* --- NAVIGATION FIXES --- */
    .navbar {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
        padding: 10px 15px !important;
        border-radius: 0 !important;
        background: rgba(10, 10, 10, 0.95) !important;
    }

    .nav-container {
        padding: 0 !important;
        gap: 10px;
    }

    .logo {
        font-size: 1.3rem !important;
        margin-right: auto !important;
        /* Push buttons to the right */
        z-index: 2005;
        white-space: nowrap;
    }

    .nav-actions {
        margin-left: 5px;
    }

    /* Calculator Button - Compact styling */
    .btn-calcul {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Phone Button */
    .icon-links {
        gap: 8px !important;
    }

    .icon-links a {
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }



    /* --- HERO TYPOGRAPHY FIXES --- */
    .hero-content {
        padding-top: 110px !important;
        /* Move content up */
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero-text h1 {
        font-size: 2.1rem !important;
        /* Drastically reduced from 4rem */
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
        word-wrap: break-word !important;
        /* Prevent overflow */
        hyphens: manual !important;
        width: 100% !important;
    }

    /* Specific check for very narrow screens */
    @media (max-width: 370px) {
        .hero-text h1 {
            font-size: 1.7rem !important;
        }
    }

    .hero-text .subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 30px !important;
        max-width: 100% !important;
    }
}