/* Fonts loaded via <link> in HTML head for faster parallel download (was @import) */

/* ============================================
   SenzoFit ShowRoom - Premium Aesthetic Design
   Elegant, Luxurious & Modern
   ============================================ */

/* CSS Variables - Premium Color Palette */
:root {
    /* Primary Colors - Rose Gold & Deep Burgundy */
    --color-primary: #C9A86C;
    --color-primary-dark: #A68B5B;
    --color-primary-light: #E5D4B3;

    /* Secondary Colors - Elegant Neutrals */
    --color-secondary: #2C2C2C;
    --color-secondary-light: #3D3D3D;
    --color-accent: #D4AF37;

    /* Background Colors */
    --color-bg-dark: #0D0D0D;
    --color-bg-section: #151515;
    --color-bg-card: #1A1A1A;
    --color-bg-gradient: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);

    /* Text Colors */
    --color-text-light: #FFFFFF;
    --color-text-muted: #B8B8B8;
    --color-text-gold: #C9A86C;

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Shadows */
    --shadow-gold: 0 4px 30px rgba(201, 168, 108, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 60px rgba(201, 168, 108, 0.2);

    /* Borders */
    --border-gold: 1px solid rgba(201, 168, 108, 0.3);
    --border-gold-strong: 2px solid var(--color-primary);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent AOS fade-left / fade-right horizontal animations from causing
   horizontal scroll on mobile (transform translates pre-animation cause overflow) */
[data-aos="fade-left"]:not(.aos-animate),
[data-aos="fade-right"]:not(.aos-animate) {
    will-change: transform;
}

/* Remove focus outline from navbar toggler */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.display-elegant {
    font-family: var(--font-elegant);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.text-gold {
    color: var(--color-primary) !important;
}

.text-muted-custom {
    color: var(--color-text-muted);
}

.letter-spacing-wide {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   Navigation
   ============================================ */

.navbar-premium {
    background: linear-gradient(120deg, rgba(8, 8, 8, 0.96), rgba(20, 20, 20, 0.92)) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar-premium.scrolled {
    padding: 0.5rem 0;
    background: rgba(13, 13, 13, 0.98) !important;
}

.navbar-brand-premium {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-light) !important;
    letter-spacing: 0.02em;
    /* Cancel Bootstrap's default margin-right so flex space-between
       distributes the gap between brand, phone link and hamburger evenly */
    margin-right: 0;
}

.navbar-brand-premium span {
    color: var(--color-primary);
}

.navbar-premium .navbar-toggler {
    border: 1px solid rgba(201, 168, 108, 0.4);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
}

.navbar-premium .navbar-toggler-icon {
    filter: drop-shadow(0 0 6px rgba(201, 168, 108, 0.4));
}

.nav-link-premium {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted) !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem !important;
    border-radius: 999px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link-premium:hover,
.nav-link-premium.active {
    color: var(--color-primary) !important;
    background: rgba(201, 168, 108, 0.1);
}

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

.dropdown-menu-premium {
    background: var(--color-bg-card);
    border: var(--border-gold);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 280px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

/* Category header image — top of dropdown */
.dropdown-header-img {
    margin: -1rem 0 0.6rem 0; /* cancel dropdown's top padding so image goes flush */
    padding: 0;
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 168, 108, 0.25);
    position: relative;
}

.dropdown-header-img a {
    display: block;
    line-height: 0;
    text-decoration: none;
    overflow: hidden;
}

.dropdown-header-img img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.92);
}

.dropdown-header-img:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Subtle gradient overlay at the bottom for premium feel */
.dropdown-header-img::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 13, 13, 0.45) 100%);
}

/* Desktop only: open/close dropdown menus on hover (mouse enter/leave) */
@media (min-width: 992px) {
    .navbar-premium .nav-item.dropdown:hover > .dropdown-menu-premium {
        display: block;
        animation: dropdown-hover-fade 0.22s ease-out;
    }

    /* Invisible bridge that closes the gap between the nav link and the dropdown,
       preventing the menu from closing when the cursor crosses the gap. */
    .navbar-premium .nav-item.dropdown > .dropdown-menu-premium {
        margin-top: 0;
    }
    .navbar-premium .nav-item.dropdown > .dropdown-menu-premium::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        height: 12px;
        background: transparent;
    }
}

@keyframes dropdown-hover-fade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item-premium {
    color: var(--color-text-muted);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown-item-premium:hover {
    background: rgba(201, 168, 108, 0.1);
    color: var(--color-primary);
    padding-left: 2rem;
}

/* Menu badge "TOP" for highlighted items */
.menu-badge-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    margin-left: 0.75rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-bg-dark);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(201, 168, 108, 0.4);
    animation: badge-pulse-top 2.5s ease-in-out infinite;
    position: relative;
}

@keyframes badge-pulse-top {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(201, 168, 108, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 2px 12px rgba(201, 168, 108, 0.7);
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {

    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(201, 168, 108, 0.06) 0%, transparent 45%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A86C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 108, 0.1), transparent);
}

.hero-line:nth-child(1) { left: 20%; }
.hero-line:nth-child(2) { left: 40%; }
.hero-line:nth-child(3) { left: 60%; }
.hero-line:nth-child(4) { left: 80%; }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 1.25rem;
    z-index: 1;
}

.hero-visual-glow {
    position: absolute;
    inset: -20% -10% auto auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.25), transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

.hero-visual-card {
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.hero-visual-card--primary {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.96), rgba(12, 12, 12, 0.9));
}

.hero-visual-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.hero-visual-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.hero-visual-card p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.hero-visual-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hero-visual-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-visual-card--mini {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-visual-card--mini h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.hero-visual-card--mini p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.hero-visual-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(201, 168, 108, 0.15);
    color: var(--color-primary);
    font-size: 1.4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 168, 108, 0.1);
    border: var(--border-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: var(--border-gold);
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--color-bg-dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-primary);
    border: var(--border-gold-strong);
}

.btn-outline-gold:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* ============================================
   Section Styles
   ============================================ */

.section-premium {
    padding: 8rem 0;
    position: relative;
}

.section-dark {
    background: var(--color-bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-strip {
    padding: 3.5rem 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.95), rgba(21, 21, 21, 0.95));
    border-top: 1px solid rgba(201, 168, 108, 0.15);
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.experience-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    border-radius: 16px;
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(201, 168, 108, 0.2);
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.experience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.experience-card p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.experience-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(201, 168, 108, 0.18);
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(201, 168, 108, 0.1);
    border: var(--border-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Category Cards
   ============================================ */

.category-card {
    position: relative;
    background: var(--color-bg-card);
    border: var(--border-gold);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.1);
    border: var(--border-gold);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: scale(1.1);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.category-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.category-count {
    font-size: 0.8rem;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   Equipment Cards
   ============================================ */

.equipment-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 108, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.equipment-card:hover {
    border-color: var(--color-primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-card);
}

a.equipment-card-link,
a.equipment-card-link:hover,
a.equipment-card-link:focus,
a.equipment-card-link:active,
a.equipment-card-link:visited {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.equipment-image {
    position: relative;

    background: linear-gradient(135deg, rgba(201, 168, 108, 0.05), rgba(13, 13, 13, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.equipment-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 168, 108, 0.1), transparent);
}

.equipment-placeholder {
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.equipment-card:hover .equipment-placeholder {
    opacity: 1;
    transform: scale(1.1);
}

.equipment-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
}

.equipment-badge-top {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-bg-dark);
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 14px rgba(201, 168, 108, 0.5);
    animation: equipment-badge-top-pulse 2.5s ease-in-out infinite;
}

@keyframes equipment-badge-top-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.equipment-content {
    padding: 1.5rem;
}

.equipment-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.equipment-category {
    font-size: 0.8rem;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.equipment-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.equipment-features li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.equipment-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
}

.equipment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.equipment-link:hover {
    color: var(--color-accent);
    gap: 0.75rem;
}

/* ============================================
   About Section
   ============================================ */

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

@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    padding: 2rem;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 2rem;
    bottom: 2rem;
    border: var(--border-gold-strong);
    border-radius: 16px;
}

.about-image-placeholder {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-section));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(2rem, 2rem);
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 168, 108, 0.15), transparent);
}

.about-image-icon {
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.1);
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-bg-section), var(--color-bg-dark));
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 108, 0.1), transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.08), transparent 40%);
}

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

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

/* ============================================
   Contact Section
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

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

.contact-info-card {
    background: var(--color-bg-card);
    border: var(--border-gold);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.1);
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-text a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-text a:hover {
    color: var(--color-accent);
}

.contact-form-card {
    background: var(--color-bg-card);
    border: var(--border-gold);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.form-control-premium {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--color-bg-section);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 8px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.form-control-premium::placeholder {
    color: var(--color-text-muted);
}

textarea.form-control-premium {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   Footer
   ============================================ */

.footer-premium {
    background: var(--color-bg-dark);
    border-top: var(--border-gold);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--color-primary);
}

.footer-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 108, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.1);
    border: var(--border-gold);
    border-radius: 50%;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* ============================================
   Animations
   ============================================ */

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

/* ============================================
   Utility Classes
   ============================================ */

.divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.glow-gold {
    box-shadow: 0 0 30px rgba(201, 168, 108, 0.3);
}

.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A86C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Responsive video container */
.video-container {
    position: relative;
    padding: 177.78% 0 0 0; /* Mobile: 9:16 portrait */
}

@media (min-width: 768px) {
    .video-container {
        padding: 56.25% 0 0 0; /* Desktop: 16:9 landscape */
    }
}

/* ============================================
   Dropdown Arrow Animation
   ============================================ */

/* Remove underline effect from dropdown toggles */
.nav-link-premium.dropdown-toggle::after {
    display: none !important; /* Hide Bootstrap's default caret */
}

.nav-link-premium.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Custom dropdown arrow */
.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

/* Rotate arrow on hover and when dropdown is open */
.nav-item.dropdown:hover .dropdown-arrow,
.nav-item.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Remove the underline effect specifically for dropdown toggles */
.nav-link-premium.dropdown-toggle:hover::before,
.nav-link-premium.dropdown-toggle.active::before {
    width: 0 !important;
}

/* Mobile styles - full-width clickable dropdown row */
@media (max-width: 991.98px) {
    /* Mobile menu: scroll within the collapse area, navbar header stays fixed */
    .navbar-premium .navbar-collapse {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar but keep scroll functionality */
        scrollbar-width: none;        /* Firefox */
        -ms-overflow-style: none;     /* IE/Edge legacy */
    }

    .navbar-premium .navbar-collapse::-webkit-scrollbar {
        display: none;                /* Safari, Chrome, modern Edge */
    }

    /* Lock page scroll while menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Push first home page image below fixed navbar on mobile */
    .home-hero-img-container {
        padding-top: 70px;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .nav-link-premium.dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100% !important;
        padding: 0.75rem 1rem !important;
    }

    .dropdown-arrow {
        margin-left: auto;
        padding: 0.25rem;
    }

    .nav-link-premium:not(.dropdown-toggle):not(.mobile-phone-link) {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem !important;
    }
}

/* Mobile button positioning */
@media (max-width: 991px) {
    .nav-item.ms-lg-3 {
        margin-top: 15px;
    }
    /* Mobile navbar bottom border - only when menu is expanded */
    .navbar-premium:has(.navbar-collapse.show) {
        border-bottom: 5px solid white;
    }
}

/* Mobile button positioning - Programare */
@media (max-width: 991px) {
    .nav-item-programare {
        margin-top: 15px;
    }
}

/* ============================================
   Mobile Dropdown Animation
   ============================================ */

@media (max-width: 991.98px) {
    .dropdown-menu-premium {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        margin: 0;
        border: none;
        transition: max-height 0.35s ease-out, opacity 0.25s ease-out, padding 0.35s ease-out;
    }

    .nav-item.dropdown.show .dropdown-menu-premium,
    .dropdown-menu-premium.show {
        max-height: 1200px;
        opacity: 1;
        padding: 0.5rem 0;
        border: var(--border-gold);
    }

    .nav-item.dropdown.show .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu-premium .dropdown-item-premium {
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .dropdown-menu-premium.show .dropdown-item-premium {
        opacity: 1;
        transform: translateX(0);
    }

    .dropdown-menu-premium.show li:nth-child(1) .dropdown-item-premium {
        transition-delay: 0.05s;
    }

    .dropdown-menu-premium.show li:nth-child(2) .dropdown-item-premium {
        transition-delay: 0.08s;
    }

    .dropdown-menu-premium.show li:nth-child(3) .dropdown-item-premium {
        transition-delay: 0.11s;
    }

    .dropdown-menu-premium.show li:nth-child(4) .dropdown-item-premium {
        transition-delay: 0.14s;
    }

    .dropdown-menu-premium.show li:nth-child(5) .dropdown-item-premium {
        transition-delay: 0.17s;
    }

    .dropdown-menu-premium.show li:nth-child(6) .dropdown-item-premium {
        transition-delay: 0.20s;
    }

    .dropdown-menu-premium.show li:nth-child(7) .dropdown-item-premium {
        transition-delay: 0.23s;
    }

    .dropdown-menu-premium.show li:nth-child(8) .dropdown-item-premium {
        transition-delay: 0.26s;
    }

    .dropdown-menu-premium.show li:nth-child(9) .dropdown-item-premium {
        transition-delay: 0.29s;
    }

    .dropdown-menu-premium.show li:nth-child(10) .dropdown-item-premium {
        transition-delay: 0.32s;
    }

    .dropdown-menu-premium.show li:nth-child(11) .dropdown-item-premium {
        transition-delay: 0.35s;
    }

    .dropdown-menu-premium.show li:nth-child(12) .dropdown-item-premium {
        transition-delay: 0.38s;
    }

    .dropdown-menu-premium.show li:nth-child(13) .dropdown-item-premium {
        transition-delay: 0.41s;
    }

    .dropdown-menu-premium.show li:nth-child(14) .dropdown-item-premium {
        transition-delay: 0.44s;
    }

    .dropdown-menu-premium.show li:nth-child(15) .dropdown-item-premium {
        transition-delay: 0.47s;
    }

    .dropdown-menu-premium.show li:nth-child(16) .dropdown-item-premium {
        transition-delay: 0.50s;
    }

    .dropdown-menu-premium .dropdown-divider {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .dropdown-menu-premium.show .dropdown-divider {
        opacity: 1;
    }
}

/* ============================================
   General Animations (fadeIn, slideUp, pulse)
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

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

/* Spinner utility */
.spinner-border.text-gold {
    color: var(--color-primary) !important;
}


/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Cards */
.contact-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

    .contact-card:hover {
        transform: translateY(-8px);
        border-color: var(--color-primary);
        box-shadow: var(--shadow-hover);
    }

.contact-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-card-icon {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: scale(1.1);
}

.contact-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.contact-card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-card-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

    .contact-card-link:hover {
        color: var(--color-accent);
    }

/* Callback CTA */
.callback-cta {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1), rgba(201, 168, 108, 0.05));
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 20px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.callback-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.callback-cta-icon {
    font-size: 3rem;
    color: var(--color-primary);
}

.callback-cta h4 {
    color: var(--color-text-light);
    font-family: var(--font-display);
}

/* Location Cards */
.location-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

    .location-card:hover {
        border-color: var(--color-primary);
        box-shadow: var(--shadow-hover);
    }

.location-card-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1), rgba(13, 13, 13, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.location-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.location-overlay {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.2);
    border: 2px solid rgba(201, 168, 108, 0.5);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--color-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.location-overlay-visible,
.location-card:hover .location-overlay {
    opacity: 1;
}

.location-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    padding: 0.4rem 1rem;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
}

.location-card-body {
    padding: 2rem;
}

.location-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.location-subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

    .location-detail i {
        font-size: 1.2rem;
        margin-top: 0.25rem;
    }

    .location-detail div {
        display: flex;
        flex-direction: column;
    }

    .location-detail strong {
        color: var(--color-text-light);
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .location-detail span {
        color: var(--color-text-muted);
        font-size: 0.9rem;
    }

/* Commercial Details */
.commercial-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.commercial-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.commercial-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.commercial-value {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

    .social-card i {
        font-size: 2rem;
    }

    .social-card span {
        font-size: 0.9rem;
        font-weight: 500;
    }

.social-facebook {
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    color: #1877F2;
}

    .social-facebook:hover {
        background: #1877F2;
        color: white;
    }

.social-instagram {
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid rgba(225, 48, 108, 0.3);
    color: #E1306C;
}

    .social-instagram:hover {
        background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
        color: white;
    }

.social-tiktok {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
}

    .social-tiktok:hover {
        background: #000000;
        color: white;
        border-color: #00f2ea;
        box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
    }

.social-youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #FF0000;
}

    .social-youtube:hover {
        background: #FF0000;
        color: white;
    }

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
    border-top: 1px solid rgba(201, 168, 108, 0.2);
    filter: grayscale(50%) contrast(1.1);
    transition: var(--transition-smooth);
}

    .map-container:hover {
        filter: grayscale(0%) contrast(1);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
    }

/* Contact Page Responsive */
@media (max-width: 991px) {
    .callback-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .callback-cta-content {
        flex-direction: column;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .social-card {
        padding: 1rem;
    }

        .social-card span {
            font-size: 0.75rem;
        }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================
   Equipment Page Styles (Laser 4K ProMax)
   ============================================ */

/* Certification badges */
.cert-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Wavelength card bars */
.wavelength-card-promax {
    position: relative;
    overflow: hidden;
}

.wavelength-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.wavelength-755 {
    background: linear-gradient(90deg, #E91E63, #9C27B0);
}

.wavelength-808 {
    background: linear-gradient(90deg, #2196F3, #00BCD4);
}

.wavelength-940 {
    background: linear-gradient(90deg, #FF9800, #F44336);
}

.wavelength-1064 {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

/* Spot size visuals */
.spot-visual {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spot-square {
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    border-radius: 4px;
    font-family: var(--font-body);
}

.spot-8x8 {
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
}

.spot-15x15 {
    width: 75px;
    height: 75px;
    font-size: 0.95rem;
}

.spot-15x30 {
    width: 100px;
    height: 65px;
    font-size: 0.95rem;
}

/* Specs table custom */
.specs-table-custom {
    width: 100%;
    border-collapse: collapse;
}

    .specs-table-custom th,
    .specs-table-custom td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(201, 168, 108, 0.2);
        color: var(--color-text-light);
    }

    .specs-table-custom th {
        color: var(--color-primary);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    .specs-table-custom td:first-child {
        color: var(--color-text-muted);
    }

    .specs-table-custom .highlighted-col {
        background: rgba(201, 168, 108, 0.1);
    }

    .specs-table-custom th.highlighted-col {
        color: var(--color-primary);
        background: rgba(201, 168, 108, 0.15);
    }

/* Badge variants */
.badge-budget {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #28a745;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.badge-business {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #17a2b8;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.badge-flagship {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

/* Equipment page responsive adjustments */
@media (max-width: 991px) {
    .cert-badge-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .spot-visual {
        width: 100px;
        height: 100px;
    }

    .spot-8x8 {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }

    .spot-15x15 {
        width: 60px;
        height: 60px;
        font-size: 0.85rem;
    }

    .spot-15x30 {
        width: 80px;
        height: 55px;
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .specs-table-custom th,
    .specs-table-custom td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .cert-badge-item {
        flex: 1 1 calc(50% - 0.75rem);
        justify-content: center;
    }
}


/* ============================================
   Floating Categories Menu
   ============================================ */

.floating-menu-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.floating-menu-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: none;
    color: var(--color-bg-dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

    .floating-menu-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(201, 168, 108, 0.5);
    }

    .floating-menu-btn i {
        transition: transform 0.3s ease;
    }

.floating-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 280px;
    background: var(--color-bg-card);
    border: var(--border-gold);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .floating-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

.floating-menu-header {
    padding: 1rem 1.25rem;
    background: rgba(201, 168, 108, 0.1);
    border-bottom: var(--border-gold);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-menu-items {
    max-height: 600px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

    .floating-menu-item:hover {
        background: rgba(201, 168, 108, 0.1);
        color: var(--color-primary);
        border-left-color: var(--color-primary);
        padding-left: 1.5rem;
    }

    .floating-menu-item i {
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
        color: var(--color-primary);
    }

    .floating-menu-item span {
        font-size: 0.9rem;
    }

.floating-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9997;
    background: transparent;
}

/* Floating menu mobile adjustments */
@media (max-width: 576px) {
    .floating-menu-container {
        bottom: 20px;
        right: 20px;
    }

    .floating-menu-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .floating-menu {
        width: 260px;
        right: -10px;
        bottom: 70px;
    }

    .floating-menu-items {
        max-height: 600px;
    }
}

/* Scrollbar for menu items */
.floating-menu-items::-webkit-scrollbar {
    width: 4px;
}

.floating-menu-items::-webkit-scrollbar-track {
    background: transparent;
}

.floating-menu-items::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

/* ============================================
   Floating Button Animations
   ============================================ */

/* Pulse glow animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
    }

    50% {
        box-shadow: 0 4px 35px rgba(201, 168, 108, 0.7), 0 0 20px rgba(201, 168, 108, 0.3);
    }
}

/* Ripple effect ring */
.floating-menu-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: ripple 2s ease-out infinite;
    opacity: 0;
}

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

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Second ripple for layered effect */
.floating-menu-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: ripple 2s ease-out infinite 1s;
    opacity: 0;
}

/* Icon bounce animation */
.floating-menu-btn i {
    animation: icon-bounce 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-5deg);
    }

    75% {
        transform: translateY(2px) rotate(5deg);
    }
}

/* Hover state - stop animations and scale up */
.floating-menu-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 40px rgba(201, 168, 108, 0.6);
    animation: none;
}

    .floating-menu-btn:hover::before,
    .floating-menu-btn:hover::after {
        animation: none;
        opacity: 0;
    }

    .floating-menu-btn:hover i {
        animation: none;
        transform: scale(1.1);
    }

/* When menu is open - X icon rotation */
.floating-menu-btn.menu-open {
    animation: none;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

    .floating-menu-btn.menu-open::before,
    .floating-menu-btn.menu-open::after {
        animation: none;
        opacity: 0;
    }

    .floating-menu-btn.menu-open i {
        animation: none;
    }

    .floating-menu-btn.menu-open:hover {
        transform: scale(1.15) rotate(-90deg);
        box-shadow: 0 8px 40px rgba(220, 53, 69, 0.6);
    }

/* Attention grabber - subtle shake every few seconds */
@keyframes attention-shake {
    0%, 90%, 100% {
        transform: rotate(0deg);
    }

    92% {
        transform: rotate(-10deg);
    }

    94% {
        transform: rotate(10deg);
    }

    96% {
        transform: rotate(-10deg);
    }

    98% {
        transform: rotate(10deg);
    }
}

/* Apply attention shake periodically */
.floating-menu-container:not(:hover) .floating-menu-btn:not(.menu-open) {
    animation: pulse-glow 2s ease-in-out infinite, attention-shake 8s ease-in-out infinite;
}

/* ============================================
   Audience Notice (B2B vs end-user redirect)
   ============================================ */

.audience-notice-section {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 108, 0.04));
}

.audience-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 14px;
    padding: 1.75rem 2rem;
    transition: var(--transition-smooth);
}

.audience-notice:hover {
    border-color: rgba(201, 168, 108, 0.4);
    box-shadow: 0 12px 32px rgba(201, 168, 108, 0.12);
}

.audience-notice-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 168, 108, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.audience-notice-text {
    flex: 1 1 auto;
    min-width: 0;
}

.audience-notice-text h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 0.4rem 0;
}

.audience-notice-btn {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .audience-notice {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 1.5rem;
    }
    .audience-notice-btn {
        align-self: stretch;
    }
    .audience-notice-btn .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Cookie Consent Banner & Settings Modal
   ============================================ */

.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.98), rgba(13, 13, 13, 0.98));
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--color-text-light);
}

.cc-banner.cc-visible {
    transform: translateY(0);
}

.cc-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cc-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 168, 108, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cc-content {
    flex: 1 1 auto;
    min-width: 0;
}

.cc-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 0.35rem 0;
    color: var(--color-primary);
}

.cc-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.cc-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cc-actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cc-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cc-btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-bg-dark);
    border-color: var(--color-primary);
}

.cc-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 168, 108, 0.35);
}

.cc-btn-secondary {
    background: transparent;
    color: var(--color-text-light);
    border-color: rgba(201, 168, 108, 0.4);
}

.cc-btn-secondary:hover {
    background: rgba(201, 168, 108, 0.1);
    border-color: var(--color-primary);
}

.cc-btn-link {
    background: transparent;
    color: var(--color-text-muted);
    border: none;
    text-decoration: underline;
    padding: 0.55rem 0.5rem;
}

.cc-btn-link:hover {
    color: var(--color-primary);
}

/* Modal */
.cc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cc-modal.cc-visible {
    display: flex;
    opacity: 1;
}

.cc-modal-content {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 14px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--color-text-light);
    animation: cc-modal-pop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cc-modal-pop {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.cc-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0;
    color: var(--color-primary);
}

.cc-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.cc-close:hover {
    background: rgba(201, 168, 108, 0.15);
    color: var(--color-primary);
}

.cc-modal-body {
    padding: 1.5rem;
}

.cc-intro {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.cc-category {
    background: rgba(201, 168, 108, 0.05);
    border: 1px solid rgba(201, 168, 108, 0.18);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.85rem;
}

.cc-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cc-category strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.cc-required {
    display: inline-block;
    margin-left: 0.6rem;
    padding: 0.15rem 0.55rem;
    background: rgba(201, 168, 108, 0.2);
    color: var(--color-primary);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cc-category p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.83rem;
    line-height: 1.5;
}

.cc-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cc-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cc-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    transition: 0.3s;
}

.cc-slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cc-toggle input:checked + .cc-slider {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.cc-toggle input:checked + .cc-slider:before {
    transform: translateX(22px);
}

.cc-toggle-disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.cc-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(201, 168, 108, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .cc-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    .cc-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    .cc-btn { flex: 1 1 auto; min-width: 0; }
    .cc-btn-link { flex: 0 0 auto; }
    .cc-icon { display: none; }
    .cc-modal-footer { flex-direction: column-reverse; }
    .cc-modal-footer .cc-btn { width: 100%; }
}

/* Footer legal links — must be readable */
.footer-legal-links {
    align-items: center;
}
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-legal-links a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.footer-legal-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}
@media (max-width: 767px) {
    .footer-legal-sep { display: none; }
    .footer-legal-links { gap: 1rem !important; }
}

/* ============================================
   WhatsApp Floating Button — bottom-left
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #20BD5A);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 9997;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
    color: #fff !important;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
                    0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
                    0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-family: var(--font-body);
    border: 1px solid rgba(201, 168, 108, 0.25);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: rgba(20, 20, 20, 0.95);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        left: 16px;
    }
    .whatsapp-icon { width: 28px; height: 28px; }
    .whatsapp-tooltip { display: none; }
}

/* When cookie banner is visible, lift WhatsApp button so it doesn't overlap */
.cc-banner.cc-visible ~ .whatsapp-float {
    bottom: 110px;
}
@media (max-width: 767px) {
    .cc-banner.cc-visible ~ .whatsapp-float {
        bottom: 200px;
    }
}

/* Honeypot field — visually hidden but technically present in DOM */
.hp-field {
    position: absolute;
    left: -10000px;
    top: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   Mobile phone CTA — neutral grey + centered between brand & hamburger
   The link sits as a flex sibling of .navbar-brand and .navbar-toggler,
   so Bootstrap's `justify-content: space-between` on `.navbar > .container`
   places it with equal gap from each side automatically.
   Text and icon both use #7b7b7b in the 381-991px range AND in the
   icon-only state below 380px (the icon inherits via `color: inherit`).
   ============================================ */
.navbar-premium .mobile-phone-link {
    color: #7b7b7b !important;
}
.navbar-premium .mobile-phone-link .bi {
    color: inherit;
}
.navbar-premium .mobile-phone-link:hover,
.navbar-premium .mobile-phone-link:focus {
    color: #7b7b7b !important;
    background: rgba(123, 123, 123, 0.1);
}

/* ============================================
   Mobile phone CTA — icon-only mode on very narrow screens
   Below 370px, the full "0752 135 135" link makes the navbar wrap
   onto two lines. Hide the text and show only the phone icon as a
   circular button that mirrors the hamburger toggler.
   ============================================ */
@media (max-width: 370px) {
    .navbar-premium .mobile-phone-link {
        padding: 0.45rem 0.65rem !important;
        font-size: 1rem;
        line-height: 1;
        border: 1px solid rgba(201, 168, 108, 0.4);
        border-radius: 999px;
        text-transform: none;
        letter-spacing: 0;
    }
    .navbar-premium .mobile-phone-link .phone-text {
        display: none;
    }
    .navbar-premium .mobile-phone-link .bi {
        margin-right: 0 !important;
        font-size: 1rem;
    }
    /* Cancel the underline pseudo-element from .nav-link-premium */
    .navbar-premium .mobile-phone-link::after {
        display: none !important;
    }
    .navbar-premium .mobile-phone-link:hover,
    .navbar-premium .mobile-phone-link:focus {
        background: rgba(123, 123, 123, 0.15);
    }
}

/* ============================================
   "Salon SenzoFit" external link — purple accent
   Distinguishes the parent-site link from the gold-themed nav.
   ============================================ */
.navbar-premium .nav-link-salon {
    color: #a78bfa !important;          /* soft violet (Tailwind violet-400) */
}
.navbar-premium .nav-link-salon:hover,
.navbar-premium .nav-link-salon:focus,
.navbar-premium .nav-link-salon.active {
    color: #c4b5fd !important;          /* lighter violet on hover */
    background: rgba(167, 139, 250, 0.1);
}
.navbar-premium .nav-link-salon::after {
    background: #a78bfa;                /* underline accent matches the link color */
}
