/* ===================================
   ELS Service - Modern Public Website
   Clean, Professional, Animated
   =================================== */

/* Import modern font (similar to reference site) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   ROOT VARIABLES & RESET
   =================================== */
:root {
    /* Colors - DARK THEME matching reference site */
    --primary: #E84545;        /* Neon Red from logo */
    --primary-dark: #D63031;   /* Darker red */
    --secondary: #FF6B35;      /* Orange accent */
    --accent: #FF9A3C;         /* Warm orange */
    --neon-glow: #FF4757;      /* Bright neon red */
    --dark: #101010;           /* Pure dark like reference site */
    --dark-light: #1a1a1a;     /* Slightly lighter */
    --dark-card: #1a1a1a;      /* Card background */
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #c0c0c0;           /* Lighter gray - more readable */
    --gray-light: #2a2a2a;
    --text-primary: rgba(255, 255, 255, 0.95);    /* Main text */
    --text-secondary: rgba(255, 255, 255, 0.75);  /* Secondary text */
    --text-muted: rgba(255, 255, 255, 0.6);       /* Muted text */
    
    /* Gradients - Subtle RED/ORANGE theme */
    --gradient-primary: linear-gradient(135deg, #E84545 0%, #FF6B35 100%);
    --gradient-hero: linear-gradient(135deg, rgba(16, 16, 16, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    
    /* Spacing - Inspired by reference site */
    --container-width: 1200px;
    --section-padding: 120px;  /* More breathing room */
    
    /* Animation - SMOOTHER */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;   /* Enable smooth scrolling */
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.8; /* Increased from 1.6 for better readability */
    overflow-x: hidden;
    font-size: 18px; /* Larger base font like reference site */
    font-weight: 400;
    letter-spacing: 0.3px; /* Slightly more spacing */
    /* Smooth scrolling optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Text Selection - NEON RED */
::selection {
    background: rgba(232, 69, 69, 0.3);
    color: var(--white);
}

::-moz-selection {
    background: rgba(232, 69, 69, 0.3);
    color: var(--white);
}

/* Animated Background Particles */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #101010;  /* Pure dark like reference */
}

/* Animated gradient mesh */
/* Animated Background Mesh - Very subtle hints */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(232, 69, 69, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: meshMove 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes meshMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%;
    }
    25% {
        background-position: 30% 40%, 70% 60%, 40% 70%, 90% 30%;
    }
    50% {
        background-position: 60% 80%, 40% 20%, 80% 40%, 20% 80%;
    }
    75% {
        background-position: 20% 60%, 90% 40%, 30% 80%, 70% 10%;
    }
}

/* Custom Scrollbar - NEON RED */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    border: 2px solid var(--dark);
    box-shadow: 0 0 10px rgba(232, 69, 69, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 100%);
    box-shadow: 0 0 15px rgba(232, 69, 69, 0.8);
}

/* Content wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* ===================================
   TYPOGRAPHY - ENHANCED READABILITY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;          /* Pure white for maximum contrast */
    margin-bottom: 1.2em;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 4.5rem;         /* 72px - Big and bold like reference */
    font-weight: 800;
    letter-spacing: -1.5px;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.9),
        0 6px 30px rgba(0, 0, 0, 0.6);
}

h2 {
    font-size: 3rem;           /* 48px */
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

h3 {
    font-size: 1.875rem;       /* 30px */
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

h4 {
    font-size: 1.5rem;         /* 24px */
    font-weight: 600;
    letter-spacing: -0.3px;
}

h5 {
    font-size: 1.25rem;        /* 20px */
    font-weight: 600;
}

p {
    margin-bottom: 1.5em;
    color: rgba(255, 255, 255, 0.85);  /* Brighter white for better contrast */
    font-size: 1.0625rem;     /* 17px */
    line-height: 1.9;          /* More spacing like reference */
    letter-spacing: 0.3px;
    font-weight: 400;
    text-shadow: none;         /* Cleaner, less glow */
}

ul, ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.9em;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);  /* Brighter for contrast */
    letter-spacing: 0.3px;
}

strong, b {
    font-weight: 600;
    color: #ffffff;
}

/* Better link readability */
a {
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

a:hover {
    color: var(--secondary);
}

/* ===================================
   NAVIGATION
   =================================== */
/* ===================================
   NAVIGATION - Header Background Color
   Change background color on line 242 below
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255, 250, 245, 0.95);  /* <-- ÄNDRA HÄR: Header bakgrundsfärg */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    z-index: 999;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);  /* <-- ÄNDRA HÄR: Header bakgrundsfärg när scrollad */
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 70px;
    width: auto;
    margin-right: 12px;
}

/* Placeholder när logo saknas */
.logo img[src*="els-logo.png"] {
    /* Shows placeholder border when image doesn't exist */
    min-width: 70px;
    border: 2px dashed rgba(232, 69, 69, 0.5);
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 0 15px rgba(232, 69, 69, 0.3);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(232, 69, 69, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(232, 69, 69, 0.6);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
    padding: 12px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 14px 24px;
    color: #111;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    border-left: 3px solid transparent;
    margin: 2px 8px;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: rgba(232, 69, 69, 0.08);
    border-left-color: var(--primary);
    color: #111;
    padding-left: 28px;
}

.cta-button {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Mobile Menu Toggle - ANIMATED HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    position: relative;
    z-index: 1003; /* HIGHEST - above everything */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #111; /* Dark lines to contrast against light navbar */
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 0 10px rgba(232, 69, 69, 0.3);
    position: relative;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--primary);
    box-shadow: 0 0 20px rgba(232, 69, 69, 0.8);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--primary);
    box-shadow: 0 0 20px rgba(232, 69, 69, 0.8);
}

/* Hover effect */
.menu-toggle:hover span {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(232, 69, 69, 0.6);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero.hero-ac {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.281) 0%, rgba(26, 26, 46, 0.315) 100%), 
                url('../images/ac-service-bg.jpg') center/cover no-repeat;
}

.hero.hero-dack {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.336) 0%, rgba(26, 26, 46, 0.322) 100%), 
                url('../images/tires-bg.jpg') center/cover no-repeat;
}

.hero.hero-dackhotell {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.281) 0%, rgba(26, 26, 46, 0.322) 100%), 
                url('../images/tire-storage-bg.jpg') center/cover no-repeat;
}

.hero.hero-optimering {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.301) 0%, rgba(26, 26, 46, 0.329) 100%), 
                url('../images/engine-bg.jpg') center/cover no-repeat;
}

.hero.hero-contact {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.274) 0%,rgba(26, 26, 46, 0.315) 100%), 
                url('../images/contact-bg.jpg') center/cover no-repeat;
}

.hero.hero-about {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.308) 0%, rgba(26, 26, 46, 0.281) 100%), 
                url('../images/team-bg.jpg') center/cover no-repeat;
}

.hero.hero-booking {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.295) 0%, rgba(26, 26, 46, 0.301) 100%), 
                url('../images/calendar-bg.jpg') center/cover no-repeat;
}

.hero.hero-workshop {
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.315) 0%, rgba(26, 26, 46, 0.288) 100%), 
                url('../images/workshop-bg.jpg') center/cover no-repeat;
}

/* Hero Background Slideshow */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

/* Ken Burns zoom effect */
@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile optimization - use mobile images */
@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll; /* Better mobile performance */
    }
    
    /* Disable parallax on mobile */
    .section-bg-image {
        background-attachment: scroll !important;
        opacity: 0.08; /* Lower opacity on mobile */
    }
}

/* Dark overlay on hero images */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(16, 16, 16, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;         /* 72px - Big and impactful */
    font-weight: 800;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    letter-spacing: -1.5px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.9),
        0 6px 30px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.hero p {
    font-size: 1.375rem;       /* 22px */
    margin-bottom: 40px;
    opacity: 1;
    line-height: 1.8;
    letter-spacing: 0.3px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: backwards;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: backwards;
}

/* Buttons - NEON RED GLOW */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(232, 69, 69, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(232, 69, 69, 0.6),
        0 0 40px rgba(232, 69, 69, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(232, 69, 69, 0.2);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(232, 69, 69, 0.5),
        0 0 30px rgba(232, 69, 69, 0.4);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Section with background image */
.section-with-bg {
    position: relative;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    opacity: 0.15;
    z-index: 0;
}

.section-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;           /* 48px - bigger and bolder */
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;         /* Remove shadow for gradient text */
}

.section-header p {
    font-size: 1.125rem;       /* 18px */
    color: rgba(255, 255, 255, 0.8);  /* Brighter white for contrast */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
    letter-spacing: 0.3px;
    font-weight: 400;
    text-shadow: none;
}

/* ===================================
   LIGHT SERVICES TILES (3x2)
   =================================== */
.services-tiles-section {
    padding: 80px 0;
    background: #f6f7fb;
}

.services-tiles-section .container {
    max-width: var(--container-width);
}

.services-tiles-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-tiles-header h2 {
    color: #0f172a;
    -webkit-text-fill-color: unset;
    text-shadow: none;
}

.services-tiles-header p,
.services-tiles .tile h3,
.services-tiles .tile p {
    color: #1f2937;
}

.services-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-tiles .tile {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.services-tiles .tile:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 69, 69, 0.35);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.services-tiles .thumb {
    border-radius: 10px;
    overflow: visible;
    position: relative;
    margin-bottom: 14px;
}

.services-tiles .thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
    clip-path: polygon(
        6% 3%, 14% 0%, 22% 4%, 30% 1%, 38% 5%, 46% 0%, 54% 4%, 62% 1%,
        70% 5%, 78% 2%, 86% 6%, 94% 1%, 100% 8%, 98% 16%, 100% 24%,
        97% 32%, 100% 40%, 98% 48%, 100% 56%, 98% 64%, 100% 72%,
        97% 80%, 100% 88%, 98% 96%, 92% 100%, 84% 98%, 76% 100%,
        68% 98%, 60% 100%, 52% 98%, 44% 100%, 36% 98%, 28% 100%,
        20% 98%, 12% 100%, 6% 98%, 2% 92%, 0% 84%, 2% 76%, 0% 68%,
        2% 60%, 0% 52%, 2% 44%, 0% 36%, 2% 28%, 0% 20%, 2% 12%, 0% 6%
    );
}

.services-tiles .tile:hover .thumb img {
    transform: scale(1.03);
}

.services-tiles .tile h3 {
    font-size: 1.05rem;
    margin: 6px 0 6px;
    color: #0f172a;
}

.services-tiles .tile p {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.services-tiles .tile .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

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

@media (max-width: 640px) {
    .services-tiles {
        grid-template-columns: 1fr;
    }
    .services-tiles .thumb img { height: 180px; }
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Compact services grid - 5 columns */
.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.service-card-compact {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card-compact:nth-child(1) { animation-delay: 0.1s; }
.service-card-compact:nth-child(2) { animation-delay: 0.2s; }
.service-card-compact:nth-child(3) { animation-delay: 0.3s; }
.service-card-compact:nth-child(4) { animation-delay: 0.4s; }
.service-card-compact:nth-child(5) { animation-delay: 0.5s; }

.service-card-compact:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 69, 69, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.service-compact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #E84545 0%, #FF6B35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-card-compact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.service-card-compact p {
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Why Us Section - Split Layout */
.why-us-section {
    padding: 120px 0;
    background: #101010;
}

.why-us-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: left;
}

.why-us-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.why-us-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    padding-left: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.why-us-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.why-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Dedicated Services Section - Image + Text Rows */
.dedicated-services {
    padding: 120px 0;
    background: #101010;
}

.dedicated-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.dedicated-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.dedicated-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--secondary);
}

/* Service Row - Alternating Image/Text */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row-reverse {
    direction: rtl;
}

.service-row-reverse > * {
    direction: ltr;
}

.service-row-image {
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.service-row-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    /* Dramatic brush stroke effect - very rough painted edges */
    clip-path: polygon(
        5% 2%, 12% 0%, 18% 3%, 25% 1%, 32% 4%, 38% 0%, 45% 3%, 
        52% 1%, 58% 4%, 65% 0%, 72% 2%, 78% 5%, 85% 1%, 92% 3%, 98% 0%,
        100% 8%, 98% 15%, 100% 22%, 97% 28%, 100% 35%, 98% 42%, 
        100% 48%, 97% 55%, 100% 62%, 98% 68%, 100% 75%, 97% 82%, 
        100% 88%, 98% 95%, 95% 100%,
        88% 98%, 82% 100%, 75% 97%, 68% 100%, 62% 98%, 55% 100%, 
        48% 97%, 42% 100%, 35% 98%, 28% 100%, 22% 97%, 15% 100%, 
        8% 98%, 2% 100%, 0% 95%,
        2% 88%, 0% 82%, 3% 75%, 0% 68%, 2% 62%, 0% 55%, 3% 48%, 
        0% 42%, 2% 35%, 0% 28%, 3% 22%, 0% 15%, 2% 8%
    );
    filter: drop-shadow(-5px 5px 15px rgba(0, 0, 0, 0.4)) 
            drop-shadow(5px 10px 25px rgba(0, 0, 0, 0.3));
}

/* Add painted texture overlay */
.service-row-image::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
}

.service-row:hover .service-row-image img {
    transform: scale(1.05);
}

.service-row-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-row-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-row-content .btn {
    padding: 12px 32px;
    font-size: 14px;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);     /* Dark like reference */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);  /* Subtle white border */
    border-radius: 16px;       /* Less rounded, more modern */
    padding: 40px;             /* Compact padding */
    box-shadow: 
        0 4px 24px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
    box-shadow: 0 0 15px rgba(232, 69, 69, 0.8);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(232, 69, 69, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(232, 69, 69, 0.4);
    background: rgba(26, 26, 26, 0.95);
}

.service-icon {
    font-size: 48px;           /* Smaller, more modern */
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(232, 69, 69, 0.3));
    transition: var(--transition);
}

.service-card:hover .service-icon {
    filter: drop-shadow(0 0 16px rgba(232, 69, 69, 0.6));
    transform: scale(1.05);    /* Less dramatic */
}

.service-card h3 {
    font-size: 1.5rem;         /* 24px - more compact */
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: none;         /* Clean, no shadow */
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);  /* More muted for elegance */
    line-height: 1.7;          /* Tighter spacing */
    margin-bottom: 20px;
    font-size: 0.9375rem;      /* 15px - smaller, cleaner */
    letter-spacing: 0.2px;
    font-weight: 400;
    text-shadow: none;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   CTA SECTIONS & INFO BOXES
   =================================== */
.cta-section {
    text-align: center;
    margin-top: 100px;         /* More space */
    padding: 0 20px;
}

.cta-section h2 {
    font-size: 2.75rem;        /* 44px */
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.125rem;       /* 18px */
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.8);  /* Brighter white */
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-box {
    background: rgba(26, 26, 26, 0.8);  /* Dark like reference */
    padding: 50px;             /* More padding */
    border-radius: 16px;       /* Less rounded */
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    text-align: center;
    box-shadow: 
        0 4px 24px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.info-box h3 {
    font-size: 1.875rem;       /* 30px */
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.info-box h4 {
    font-size: 1.25rem;        /* 20px */
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.info-box p {
    font-size: 1.0625rem;      /* 17px */
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);  /* Brighter white */
}

.info-box ul {
    list-style: none;
    padding: 0;
    font-size: 1.0625rem;      /* 17px */
    line-height: 2.2;
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

.info-box ul li {
    color: rgba(255, 255, 255, 0.85);  /* Brighter white */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;                 /* More gap */
    margin-top: 40px;
    text-align: center;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

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

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

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll out animation - when scrolling up */
.fade-in.fade-out {
    opacity: 0;
    transform: translateY(60px);
}

/* Stagger animations for grid items */
.service-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay each card slightly for stagger effect */
.service-card:nth-child(1).visible { transition-delay: 0.1s; }
.service-card:nth-child(2).visible { transition-delay: 0.2s; }
.service-card:nth-child(3).visible { transition-delay: 0.3s; }
.service-card:nth-child(4).visible { transition-delay: 0.4s; }
.service-card:nth-child(5).visible { transition-delay: 0.5s; }
.service-card:nth-child(6).visible { transition-delay: 0.6s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Light navbar on mobile too */
    .navbar {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
    
    /* Compact services grid - stack on mobile */
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Why Us - stack on mobile */
    .why-us-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-image img {
        height: 300px;
    }
    
    /* Service rows - stack on mobile with image always on top */
    .service-row,
    .service-row-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    
    /* Force image to appear first on mobile */
    .service-row-reverse .service-row-image {
        order: -1;
    }
    
    .service-row-image img {
        height: 250px;
    }
    
    .dedicated-header h2,
    .why-us-content h2 {
        font-size: 1.875rem;
    }
    
    .service-row-content h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile Menu - SLIDE IN WITH GLOW (SLOWER) */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #0a0a0f; /* Solid background for sharp text */
        backdrop-filter: none; /* Removed blur for sharp text */
        border-left: 2px solid rgba(232, 69, 69, 0.5);
        box-shadow: -10px 0 50px rgba(232, 69, 69, 0.3);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 1002; /* ABOVE overlay (1000) */
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile menu items */
    .nav-menu .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(50px);
        animation: slideInRight 0.5s forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.6s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.7s; }
    
    .nav-menu .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--white);
    }
    
    .nav-menu .nav-link:hover {
        color: var(--primary);
        padding-left: 10px;
        text-shadow: 0 0 20px rgba(232, 69, 69, 0.6);
    }
    
    .nav-menu .cta-button {
        margin-top: 20px;
        text-align: center;
        display: block;
        animation: pulse 2s ease-in-out infinite;
    }
    
    /* Mobile Dropdown - PUSH DOWN STYLE */
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 400px;
    }
    
    .nav-menu .dropdown-item {
        padding: 12px 20px 12px 40px;
        font-size: 15px;
        border-left: 3px solid transparent;
        background: rgba(232, 69, 69, 0.05);
        margin: 4px 0;
        border-radius: 8px;
        color: #fff; /* readable on dark mobile menu background */
    }
    
    .nav-menu .dropdown-item:hover {
        background: rgba(232, 69, 69, 0.15);
        border-left-color: var(--primary);
        padding-left: 45px;
        color: #fff;
    }
    
    .nav-menu .dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu .dropdown > .nav-link::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
        color: var(--primary);
    }
    
    .nav-menu .dropdown.active > .nav-link::after {
        transform: rotate(180deg);
    }
    
    /* Mobile menu overlay - COMPLETELY REMOVED, using different approach */
    .mobile-overlay {
        display: none !important; /* Temporarily disabled */
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 8px 25px rgba(232, 69, 69, 0.4);
        }
        50% {
            box-shadow: 0 8px 35px rgba(232, 69, 69, 0.7), 0 0 40px rgba(232, 69, 69, 0.5);
        }
    }
    
    .hero h1 {
        font-size: 44px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .hero p {
        font-size: 18px;
        line-height: 1.7;
        letter-spacing: 0.3px;
    }
    
    .section-header h2 {
        font-size: 38px;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Contact page grid - stack on mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-grid .service-card {
        padding: 40px 30px !important;
    }
    
    /* Booking page - stack 2-column grids on mobile */
    .form-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .date-picker-box {
        padding: 20px !important;
    }
    
    .date-picker-box input[type="date"] {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ===================================
    CAMPAIGN ELEMENTS
    =================================== */
.campaign-banner,
.black-friday-banner {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 15px 25px;
    margin-bottom: 30px;
    display: inline-block;
    animation: pulse-border 2s infinite;
    backdrop-filter: blur(10px);
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.campaign-banner .badge,
.black-friday-banner .badge {
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 1px;
}

.campaign-banner .text,
.black-friday-banner .text {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    vertical-align: middle;
    line-height: 1.4;
}

.hero-campaign-banner {
    margin-left: auto;
    margin-right: auto;
}

.campaign-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.94), rgba(38, 16, 16, 0.88));
    border: 1px solid rgba(232, 69, 69, 0.35);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.campaign-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.campaign-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(232, 69, 69, 0.18);
    border: 1px solid rgba(232, 69, 69, 0.35);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.campaign-deadline {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.campaign-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
    gap: 30px;
    align-items: center;
}

.campaign-price-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.campaign-price-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.campaign-price {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    line-height: 1;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 18px rgba(232, 69, 69, 0.35);
    margin-bottom: 12px;
}

.campaign-price-original {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: line-through;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.campaign-price-saving {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.campaign-note {
    margin-bottom: 0;
    padding: 12px 16px;
    border-left: 4px solid var(--primary);
    background: rgba(232, 69, 69, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 600;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(232, 69, 69, 0.4); border-color: var(--primary); }
    70% { box-shadow: 0 0 0 15px rgba(232, 69, 69, 0); border-color: var(--secondary); }
    100% { box-shadow: 0 0 0 0 rgba(232, 69, 69, 0); border-color: var(--primary); }
}

@media (max-width: 768px) {
    .campaign-banner,
    .black-friday-banner {
        padding: 15px;
        width: 90%;
    }
    
    .campaign-banner .badge,
    .black-friday-banner .badge {
        display: block;
        margin: 0 auto 10px auto;
        width: fit-content;
        font-size: 1rem;
    }
    
    .campaign-banner .text,
    .black-friday-banner .text {
        display: block;
        font-size: 1rem;
    }

    .campaign-card {
        padding: 28px 22px;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
    }

    .campaign-price-box {
        padding: 24px 20px;
    }
}

/* ===================================
   Subtle Admin Link
   =================================== */
.admin-link {
    font-size: 12px;
    opacity: 0.35;
    letter-spacing: 0.5px;
    margin-left: 10px;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}
.admin-link:hover {
    opacity: 0.75;
    color: var(--primary);
}
.footer-bottom .admin-link::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}
