/* ========================================
   Bhulenth Electric - Modern Website Styles
   Dark Mode (#1a1a1a + #d4af37) & Light Mode
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    /* Dark Mode (Default) */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #1f1f1f;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --gold-primary: #d4af37;
    --gold-secondary: #f4cf5e;
    --gold-dark: #b8942e;

    /* Common Colors */
    --accent-electric: #00d4ff;
    --accent-spark: #ffcc00;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --shadow-light: rgba(212, 175, 55, 0.2);
    --overlay: rgba(26, 26, 26, 0.85);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Orbitron', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
}

/* Light Mode Variables */
body.light-mode {
    --bg-primary: #f8f8f8;
    --bg-secondary: #efefef;
    --bg-tertiary: #e8e8e8;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --overlay: rgba(248, 248, 248, 0.95);
    --shadow-dark: rgba(0, 0, 0, 0.1);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 0.95rem;
    overflow-x: hidden;
    transition: background-color var(--transition-medium), color var(--transition-medium);
    margin: 0;
    padding: 0;
    min-height: 100%;
}

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

.section {
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    background: var(--bg-primary);
}

.about-section {
    margin-top: 0;
    padding-top: 3rem;
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

/* ===== Page Header (for separate pages) ===== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent 49%, var(--gold-primary) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, var(--gold-primary) 50%, transparent 51%);
    background-size: 100px 100px;
    opacity: 0.03;
    animation: circuitMove 20s linear infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

body.light-mode .page-header::after {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.75) 0%, rgba(80, 80, 80, 0.7) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
}

/* ===== Services Section (Home Page) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-highlight-card {
    background: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: all var(--transition-medium);
}

.service-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.service-highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    color: var(--bg-primary);
}

.service-highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-sm);
}

.service-highlight-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.service-features i {
    color: var(--gold-primary);
}

/* ===== Loading Screen ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.electric-loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.spark {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: sparkAnimation 1.5s infinite ease-in-out;
}

.spark:nth-child(1) {
    top: 0;
    left: 30px;
    animation-delay: 0s;
}

.spark:nth-child(2) {
    top: 30px;
    left: 0;
    animation-delay: 0.3s;
}

.spark:nth-child(3) {
    top: 30px;
    left: 60px;
    animation-delay: 0.6s;
}

@keyframes sparkAnimation {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px var(--gold-primary), 0 0 20px var(--gold-primary);
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
        box-shadow: 0 0 20px var(--gold-primary), 0 0 40px var(--gold-secondary);
    }
}

.loader-text {
    margin-top: var(--spacing-md);
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== Circuit Background ===== */
.circuit-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--overlay);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-dark);
    transition: all var(--transition-medium);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px var(--shadow-dark);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 2rem;
    animation: electricPulse 2s infinite;
}

@keyframes electricPulse {

    0%,
    100% {
        text-shadow: 0 0 5px var(--gold-primary), 0 0 10px var(--gold-primary);
    }

    50% {
        text-shadow: 0 0 10px var(--gold-primary), 0 0 20px var(--gold-secondary), 0 0 30px var(--gold-secondary);
    }
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--gold-primary);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transform: translateX(-50%);
    transition: width var(--transition-medium);
}

.nav-link:hover::before {
    width: 100%;
}

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

/* Energy Flow Animation on Hover */
.energy-link {
    position: relative;
}

.energy-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-electric), transparent);
    transform: translateY(-50%) scaleX(0);
    transition: transform var(--transition-medium);
    opacity: 0;
}

.energy-link:hover::after {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    animation: energyFlow 1s infinite;
}

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

    100% {
        left: 100%;
    }
}

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

.nav-link i.fa-chevron-down {
    margin-left: 0.25rem;
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

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

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.dropdown-link i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.dropdown-link:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.dropdown-link:hover i {
    color: var(--bg-primary);
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.theme-toggle i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.sun-icon {
    left: 8px;
    color: var(--gold-primary);
    opacity: 0;
}

.moon-icon {
    right: 8px;
    color: var(--gold-primary);
    opacity: 1;
}

body.light-mode .sun-icon {
    opacity: 1;
}

body.light-mode .moon-icon {
    opacity: 0;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
    transition: transform var(--transition-medium);
    box-shadow: 0 0 10px var(--gold-primary);
}

body.light-mode .theme-toggle::before {
    transform: translateX(30px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.hero-slider {
    height: 70vh;
    min-height: 500px;
}

.swiper-slide {
    height: 100%;
}

.hero-slide {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

body.light-mode .hero-slide {
    background: none !important;
}

.hero-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent 49%, var(--gold-primary) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, var(--gold-primary) 50%, transparent 51%);
    background-size: 100px 100px;
    opacity: 0.05;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 100px 100px, 100px 100px;
    }
}

.hero-slide .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

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

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 2;
}

body.light-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.75) 0%, rgba(80, 80, 80, 0.65) 100%);
}

.hero-content {
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.electric-text {
    color: var(--gold-primary);
    text-shadow: 0 0 20px var(--gold-primary), 0 0 40px var(--gold-secondary);
    animation: electricGlow 2s infinite alternate;
}

@keyframes electricGlow {
    from {
        text-shadow: 0 0 10px var(--gold-primary), 0 0 20px var(--gold-primary);
    }

    to {
        text-shadow: 0 0 20px var(--gold-primary), 0 0 40px var(--gold-secondary), 0 0 60px var(--gold-secondary);
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.spark-btn {
    position: relative;
}

.spark-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.spark-btn:hover::before {
    width: 300px;
    height: 300px;
}

.spark-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.btn-primary:hover {
    background: var(--gold-secondary);
    border-color: var(--gold-secondary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.electrical-icon-wrapper {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.electrical-icon {
    font-size: 15rem;
    color: var(--gold-primary);
    animation: iconFloat 3s ease-in-out infinite, iconRotate 10s linear infinite;
    filter: drop-shadow(0 0 30px var(--gold-primary));
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold-primary) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem !important;
}

.swiper-pagination-bullet {
    background: var(--gold-primary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    z-index: 2;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary));
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-secondary);
    color: var(--gold-primary);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-primary);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.spark-card {
    position: relative;
    overflow: hidden;
}

.spark-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.spark-card:hover::before {
    left: 100%;
}

.spark-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

/* ===== Products Section ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.product-card:hover::after {
    opacity: 1;
    animation: productGlow 2s infinite;
}

@keyframes productGlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -10px) rotate(180deg);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.product-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-medium);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px var(--gold-primary));
}

.product-slideshow {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
}

.product-slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.product-slide.active {
    display: flex;
}

.product-slideshow .product-icon {
    margin-bottom: 0;
}

.product-slide img {
    max-width: 90%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.product-card:hover .product-slide img {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

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

.product-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-tertiary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.product-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.product-list li:last-child {
    border-bottom: none;
}

.product-expand {
    width: 100%;
    padding: 0.75rem;
    background: var(--gold-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.product-expand:hover {
    background: var(--gold-secondary);
    transform: translateY(-2px);
}

.product-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    margin-top: var(--spacing-md);
}

.product-card.expanded .product-details {
    max-height: 300px;
}

.product-details ul {
    list-style: none;
    padding: 0;
}

.product-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-tertiary);
    position: relative;
    padding-left: 1.5rem;
}

.product-details li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.product-card.expanded .product-expand i {
    transform: rotate(45deg);
}

/* ===== Installations Section ===== */
.installations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.installation-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-light);
    height: 100%;
}

.installation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-medium);
}

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

.service-card {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
}

/* Installation Form */
.installation-form-wrapper {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-primary);
}

.installation-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--shadow-light);
}

/* ===== Partners Section ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.partner-card {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.partner-logo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.partner-logo-placeholder img.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all var(--transition-medium);
}

/* Specific logo size adjustments */
img.partner-logo[alt="Xpelair"],
img.partner-logo[alt="Crabtree"] {
    transform: scale(1.3);
}

.partner-card:hover .partner-logo-placeholder {
    background: var(--gold-primary);
}

.partner-card:hover .partner-logo-placeholder img.partner-logo {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

.partner-name {
    color: var(--text-primary);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.partner-card:hover .partner-name {
    color: var(--gold-primary);
}

/* Partners Toggle Button */
.partners-toggle {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.partner-card-hidden {
    display: none;
}

.partners-expanded .partner-card-hidden {
    display: flex;
}

#togglePartnersBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
}

#togglePartnersBtn .toggle-icon {
    transition: transform var(--transition-medium);
}

.partners-expanded #togglePartnersBtn .toggle-icon {
    transform: rotate(180deg);
}

/* ===== Contact Section ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.info-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.info-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.phone-whatsapp-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.phone-whatsapp-line .separator {
    color: var(--text-secondary);
    margin: 0 0.25rem;
}

.whatsapp-green {
    color: #25D366 !important;
}

.office-hours {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-style: italic;
}

.office-hours i {
    color: var(--gold-primary);
}

.info-card p:last-child {
    margin-bottom: 0;
}

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

.info-card a:hover {
    color: var(--gold-primary);
}

.info-card p i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
    width: 20px;
    display: inline-block;
}

/* Social Links */
.social-links {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px var(--shadow-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* Google Map */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-dark);
    height: 100%;
    min-height: 500px;
    position: relative;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%) contrast(1.2);
    height: 100%;
    min-height: 500px;
}

body.light-mode .map-wrapper iframe {
    filter: grayscale(0%) contrast(1);
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

body.light-mode .map-legend {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--gold-primary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.legend-marker.hq {
    animation: markerPulse 2s ease-in-out infinite;
}

.legend-marker.sales {
    animation: markerPulse 2s ease-in-out infinite 0.3s;
}

.legend-marker.warehouse {
    animation: markerPulse 2s ease-in-out infinite 0.6s;
}

@keyframes markerPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.8);
    }
}

.legend-text {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 2px solid var(--gold-primary);
    margin-bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--bg-tertiary);
    color: var(--text-secondary);
}

.footer-bottom p {
    margin: 0.5rem 0 0 0;
}

.footer-tagline {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: var(--gold-primary);
    font-weight: 600;
}

/* ===== Floating Elements ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-secondary);
    transform: translateY(-5px);
}

/* ===== Quote Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px var(--shadow-dark);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.quote-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.quote-option {
    flex: 1;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.quote-option:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.quote-option i {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.quote-option span {
    font-weight: 600;
}

.modal-hours {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-style: italic;
}

.modal-hours i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-slide .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .installations-content {
        grid-template-columns: 1fr;
    }

    .installation-image {
        order: -1;
        margin-bottom: var(--spacing-md);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .header {
        padding: 0.75rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--overlay);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        transition: left var(--transition-medium);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-medium);
        background: transparent;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }

    .mobile-toggle {
        display: flex;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .hero,
    .hero-slider,
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

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

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

    .service-cards {
        grid-template-columns: 1fr;
    }

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

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .electrical-icon {
        font-size: 8rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: var(--spacing-md);
    }

    .quote-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .header {
        padding: 0.5rem 0;
    }

    .hero,
    .hero-slider,
    .hero-slide {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        justify-items: center;
        padding: var(--spacing-md);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-features .feature-card {
        padding: var(--spacing-sm);
    }

    .feature-icon {
        font-size: 2rem;
    }

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

    .product-title {
        font-size: 1.2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .partner-logo-placeholder {
        width: 100px;
        height: 100px;
    }

    .info-card {
        padding: var(--spacing-sm);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .page-header {
        padding: 5rem 0 2.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .modal-content {
        width: 98%;
        padding: var(--spacing-sm);
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* Additional breakpoint for small tablets */
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ultra-small devices */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-content {
        padding-top: 0;
        margin-top: auto;
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo-placeholder {
        width: 80px;
        height: 80px;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

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

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

/* ===== Print Styles ===== */
@media print {

    .header,
    .hero,
    .scroll-top,
    .circuit-background {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}