/* ========================================
   RESET & BASE STYLES
   ======================================== */
:root {
    --bg-primary: #0f0f11;
    --bg-secondary: #1a1a1d;
    --bg-card: #25252a;
    --text-primary: #e8e8eb;
    --text-secondary: #a8a8b0;
    --border-color: #333338;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll/gap on mobile */
html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Lock scroll when mobile menu is open */
body.menu-open {
    height: 100vh;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Modern Logo with Animation */
.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-modern:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 45px;
    height: 45px;
    position: relative;
}

.pulse-ring {
    fill: none;
    stroke: #ffa500;
    stroke-width: 2;
    opacity: 0.3;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0.3;
        transform-origin: center;
        stroke-width: 2;
    }
    50% {
        opacity: 0.6;
        stroke-width: 1;
    }
}

.light-glow {
    animation: glow-pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px #ffa500);
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tower-icon {
    animation: tower-draw 2s ease-in-out;
}

@keyframes tower-draw {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.5));
    animation: logoGlow 2.5s ease-in-out infinite;
    text-decoration: none;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 25px rgba(255, 200, 0, 0.4));
    }
}

.logo-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffa500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    position: relative;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 4px;
    background: #ffa500;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.nav-backdrop {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 968px) {
    /* Mobile menu styles moved to inline styles in HTML */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffa500;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffa500;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,165,0,0.3);
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,165,0,0.4);
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
}

.header-cta svg {
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    color: white;
    padding: 200px 20px 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,165,0,0.15);
    border: 2px solid #ffa500;
    color: #ffa500;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 165, 0, 0.2);
}

.badge-icon {
    animation: rotate-badge 3s linear infinite;
}

@keyframes rotate-badge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Particle Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffa500;
    border-radius: 50%;
    opacity: 0;
    animation: float-up 8s linear infinite;
    box-shadow: 0 0 10px #ffa500;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.7), 0 0 20px rgba(255, 165, 0, 0.6);
    letter-spacing: -1px;
    line-height: 1.1;
    min-height: 1.2em;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 2px 2px 20px rgba(0,0,0,0.7), 0 0 20px rgba(255, 165, 0, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 2px 2px 30px rgba(0,0,0,0.7), 0 0 40px rgba(255, 165, 0, 1), 0 0 60px rgba(255, 200, 0, 0.8);
        transform: scale(1.02);
    }
}

.typewriter {
    color: #ffa500;
    display: inline-block;
    min-width: 200px;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    animation: typewriterGlow 1.5s ease-in-out infinite;
}

@keyframes typewriterGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 165, 0, 1), 0 0 30px rgba(255, 200, 0, 0.9);
    }
}

.cursor {
    display: none;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffa500;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0 2rem;
}

.hero-note {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-top: 2rem;
    font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-button.primary {
    background-color: #ffa500;
    color: white;
}

.cta-button.primary:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,165,0,0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.cta-button.large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.cta-button.small {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.hero-buttons-fixed {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

/* ========================================
   QUICK FEATURES
   ======================================== */
.quick-features {
    background-color: var(--bg-secondary);
    padding: 60px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 80px 20px;
    background-color: #fafafa;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background-color: var(--bg-secondary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   PRICING PREVIEW (Homepage)
   ======================================== */
.pricing-preview {
    background: linear-gradient(135deg, #25252a 0%, #1a1a1d 100%);
}

.pricing-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.price-box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #ffa500;
    transition: transform 0.3s;
}

.price-box:hover {
    transform: translateY(-5px);
}

.zone {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffa500;
}

.price span {
    font-size: 1.2rem;
    color: #666;
}

.pricing-extras {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-extras p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #333;
}

/* Modern Pricing Cards */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card-home {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ffa500;
}

.pricing-card-home.featured-card {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border: 3px solid #ffa500;
    transform: scale(1.05);
}

.pricing-card-home.featured-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffa500;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.pricing-card-home h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-range {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffa500;
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.pricing-card-home > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: inline-block;
    background: #ffa500;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.pricing-cta:hover {
    background: #ff8c00;
}

/* Simplified Pricing */
.pricing-simple {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-highlight {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.highlight-main {
    flex: 1;
    min-width: 200px;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 3px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.highlight-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.highlight-main.featured {
    border-color: #ffa500;
    border-width: 4px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.2);
}

.highlight-main.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.highlight-main.featured .highlight-price {
    color: #ffa500;
}

.highlight-note {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.pricing-note {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.pricing-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.perk-icon {
    font-size: 2.5rem;
}

.perk strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.perk p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   GALLERY PREVIEW (Homepage)
   ======================================== */
.gallery-preview {
    background-color: var(--bg-secondary);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-grid-home {
    grid-template-columns: repeat(3, 1fr);
}

.preview-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.preview-item:hover {
    transform: scale(1.03);
}

.preview-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* ========================================
   PORTABLE LIGHTS SECTION
   ======================================== */
.portable-lights {
    background: linear-gradient(135deg, #1a1a1d 0%, #25252a 100%);
    padding: 60px 20px;
}

.portable-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portable-main h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.portable-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #ffa500;
}

.portable-icon {
    font-size: 4rem;
}

.portable-pricing {
    text-align: left;
}

.portable-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ffa500;
    line-height: 1;
}

.portable-desc {
    color: #e8e8eb;
    font-size: 1.1rem;
}

/* Portable Lights Detail (Pricing Page) */
.portable-lights-detail {
    background: #f8f9fa;
    padding: 80px 20px;
}

.portable-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.portable-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portable-detail-card h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.detail-features {
    list-style: none;
    padding: 0;
}

.detail-features li {
    padding: 0.75rem 0;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bundle-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.bundle-item.featured {
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
    border-color: #ffa500;
}

.bundle-qty {
    font-weight: 600;
    color: #333;
}

.bundle-price {
    color: #ffa500;
    font-weight: 700;
    font-size: 1.1rem;
}

.portable-use-cases {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.portable-use-cases h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.use-case {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.use-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.use-case strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.use-case p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.portable-cta-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
    border-radius: 15px;
    border: 2px solid #ffa500;
}

.portable-cta-box p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 968px) {
    .portable-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background-color: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-item {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #ffa500;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #fff5e6;
    border-radius: 10px;
    text-align: center;
}

.contact-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-cta p strong {
    color: #ff4444;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #ffa500;
}

.submit-button {
    background-color: #ffa500;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #ff8c00;
}

/* Form Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: block;
    min-height: 10px;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* ========================================
   PAGE HEADER (Subpages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 120px 20px 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ========================================
   PRICING PAGE
   ======================================== */
.pricing-map-section {
    background-color: white;
    padding: 60px 20px;
}

.map-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pricing-details {
    background-color: #f8f9fa;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #ffa500;
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
}

.zone-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background-color: #e0e0e0;
    color: #333;
}

.zone-badge.local {
    background-color: #ffa500;
    color: white;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.price-large {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffa500;
    margin: 1.5rem 0;
}

.price-large span {
    font-size: 1.3rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {
    display: inline-block;
    background-color: #ffa500;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.pricing-button:hover {
    background-color: #ff8c00;
}

/* Diesel Policy Section */
.diesel-policy {
    background-color: white;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.policy-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.policy-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.policy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.policy-card p {
    color: #666;
    line-height: 1.8;
}

/* Extended Rates Section */
.extended-rates {
    background-color: #f8f9fa;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rate-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.rate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.rate-detail {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rate-price {
    color: #ffa500;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.rate-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rate-link {
    color: #ffa500;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.rate-link:hover {
    text-decoration: underline;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-full {
    background-color: var(--bg-secondary);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 10px;
}

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item-full:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.gallery-item-full img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: opacity 0.3s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item-full:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #ffa500;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    max-width: 80%;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-button.primary {
    background-color: white;
    color: #ffa500;
}

.cta-section .cta-button.primary:hover {
    background-color: #f0f0f0;
}

.cta-section .cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-section .cta-button.secondary:hover {
    background-color: white;
    color: #ffa500;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffa500;
}

.footer-section a {
    color: #ffa500;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    /* Modern Mobile Navigation */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1100;
    }
    
    .nav-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1098;
    }
    
    .nav-menu.active .nav-backdrop {
        opacity: 1;
        visibility: visible;
    }
    
    
    .nav-menu.active .nav-backdrop {
        pointer-events: auto;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 1.5rem 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255,165,0,0.15);
        position: relative;
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: #ffa500;
        background-color: rgba(255,165,0,0.1);
        padding-left: 2rem;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .header-cta {
        margin-top: auto;
        padding: 1rem 2rem;
        display: block;
        text-align: center;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }

    nav .container {
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.95rem;
    }

    .nav-links li {
        flex: 1;
        text-align: center;
    }

    .header-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .hero {
        background-attachment: scroll;
        padding: 120px 20px 80px;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number { font-size: 2.2rem; }
    .cta-button { width: 100%; text-align: center; }
}

/* Phone optimizations */
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .nav-menu { max-width: 100vw; width: 100vw; }
    .pricing-simple .highlight-price { font-size: 2.4rem; }
    .pricing-simple .highlight-label { font-size: 0.85rem; }
    .pricing-highlight { gap: 1rem; }
    .highlight-main { padding: 1.5rem 1.25rem; }
    .service-grid, .policy-grid { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
    #pricing-map { height: 420px; }
    .preview-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid-home { grid-template-columns: 1fr 1fr; }
    .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; }
}

@media (max-width: 420px) {
    .preview-grid { grid-template-columns: 1fr; }
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-home { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .header-cta { font-size: 0.9rem; }
}
    .hero-highlight {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .cta-button {
        width: 100%;
        max-width: 100%;
    }


    .pricing-table {
        grid-template-columns: 1fr;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .logo h1::before {
        font-size: 1.1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
        gap: 0.3rem;
        font-size: 0.75rem;
    }

    .header-cta {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .hero {
        padding: 100px 15px 60px;
        min-height: 450px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-highlight {
        font-size: 0.95rem;
        padding: 10px 16px;
    }

    section {
        padding: 50px 15px;
    }

    section h2 {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
    }

    .cta-button.large {
        padding: 16px 20px;
        font-size: 1.05rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .pricing-quick {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 100px 15px 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Mobile Map Adjustments */
    .pricing-map-section {
        padding: 40px 10px;
    }
    
    #map, .leaflet-map {
        height: 400px !important;
        min-height: 400px;
        display: block;
        position: relative;
        z-index: 1;
    }
    
    .map-legend-box {
        padding: 15px;
    }
    
    .legend-title {
        font-size: 1.1rem;
    }
    
    .legend-grid {
        grid-template-columns: 1fr;
    }
    
    .legend-item {
        font-size: 0.9rem;
    }
    
    .legend-color {
        width: 30px;
        height: 20px;
    }

    .map-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .custom-map {
        min-height: 350px;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        border-radius: 15px;
    }

    .zone-1 { width: 70px; height: 70px; }
    .zone-2 { width: 140px; height: 140px; }
    .zone-3 { width: 220px; height: 220px; }
    .zone-4 { width: 310px; height: 310px; }

    .zone-label {
        font-size: 0.6rem;
        padding: 4px 8px;
        top: 8px;
    }

    .zone-label strong {
        font-size: 0.6rem;
        display: block;
    }

    .zone-price {
        font-size: 0.75rem;
    }

    .marker-icon {
        font-size: 2rem;
    }

    .marker-label {
        font-size: 0.85rem;
        padding: 5px 10px;
    }

    .city-marker {
        gap: 3px;
    }

    .city-dot {
        width: 6px;
        height: 6px;
    }

    .city-name {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .map-legend {
        padding: 1.2rem;
        margin-top: 1rem;
    }

    .map-legend h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .legend-items {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .legend-item {
        font-size: 0.85rem;
    }

    .legend-color {
        width: 30px;
        height: 20px;
    }

    /* Pricing Cards Mobile */
    .pricing-details {
        padding: 40px 10px;
    }

    .pricing-card {
        padding: 1.8rem;
    }

    .price-large {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    /* Diesel Policy Mobile */
    .diesel-policy {
        padding: 40px 10px;
    }

    .policy-card {
        padding: 1.8rem;
    }

    .policy-icon {
        font-size: 2.5rem;
    }

    /* Extended Rates Mobile */
    .extended-rates {
        padding: 40px 10px;
    }

    .rate-card {
        padding: 1.8rem;
    }
}
        height: 8px;
    }

    .city-name {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .legend-items {
        grid-template-columns: 1fr;
    }
}
