@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    /* Default Orange Theme */
    --primary: #ff8c00;
    --primary-rgb: 255, 140, 0;
    --primary-hover: #e07b00;
    --secondary: #1a1a1a;
    --secondary-rgb: 26, 26, 26;
    
    --bg-dark: #0b0c10;
    --bg-dark-rgb: 11, 12, 16;
    --bg-card: #1f2833;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    
    --text-main: #2b2d42;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.08);
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 10px 20px rgba(255, 140, 0, 0.3);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-sm: 6px;
}

/* Green Theme */
[data-theme="green"] {
    --primary: #00e676;
    --primary-rgb: 0, 230, 118;
    --primary-hover: #00c853;
    --shadow-primary: 0 10px 20px rgba(0, 230, 118, 0.3);
}

/* Blue Theme */
[data-theme="blue"] {
    --primary: #0077ff;
    --primary-rgb: 0, 119, 255;
    --primary-hover: #005ecb;
    --shadow-primary: 0 10px 20px rgba(0, 119, 255, 0.3);
}

/* Red Theme */
[data-theme="red"] {
    --primary: #ff1744;
    --primary-rgb: 255, 23, 68;
    --primary-hover: #d50000;
    --shadow-primary: 0 10px 20px rgba(255, 23, 68, 0.3);
}

/* Yellow Theme */
[data-theme="yellow"] {
    --primary: #eab308;
    --primary-rgb: 234, 179, 8;
    --primary-hover: #ca8a04;
    --shadow-primary: 0 10px 20px rgba(234, 179, 8, 0.3);
}

/* Purple Theme */
[data-theme="purple"] {
    --primary: #a855f7;
    --primary-rgb: 168, 85, 247;
    --primary-hover: #9333ea;
    --shadow-primary: 0 10px 20px rgba(168, 85, 247, 0.3);
}

/* White Theme */
[data-theme="white"] {
    --primary: #ffffff;
    --primary-rgb: 255, 255, 255;
    --primary-hover: #f1f5f9;
    --shadow-primary: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Black Theme */
[data-theme="black"] {
    --primary: #111111;
    --primary-rgb: 17, 17, 17;
    --primary-hover: #000000;
    --shadow-primary: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Black Theme Readability & Contrast Overrides */
[data-theme="black"] header:not(.sticky) .logo-icon {
    fill: #ffffff !important;
}
[data-theme="black"] header:not(.sticky) .nav-phone svg {
    color: #ffffff !important;
}
[data-theme="black"] .hero-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}
[data-theme="black"] .hero-particles span {
    background: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.3) !important;
}
[data-theme="black"] .booking-feature-icon {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}
[data-theme="black"] .contact-detail-icon {
    color: #ffffff !important;
}
[data-theme="black"] .pricing-card.popular .popular-badge {
    background: #ffffff !important;
    color: #000000 !important;
}
[data-theme="black"] .footer-col h3::after {
    background-color: #ffffff !important;
}
[data-theme="black"] .footer-links a:hover,
[data-theme="black"] .footer-bottom-links a:hover {
    color: #ffffff !important;
}
[data-theme="black"] .footer-contact-item svg {
    color: #ffffff !important;
}
[data-theme="black"] .newsletter-form input:focus {
    border-color: #ffffff !important;
}
[data-theme="black"] .cta-banner-overlay {
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.82) 0%, rgba(0, 0, 0, 0.6) 100%) !important;
}

/* Red-Black (Sporty Racing) Theme */
[data-theme="red-black"] {
    --primary: #ff1744;
    --primary-rgb: 255, 23, 68;
    --primary-hover: #d50000;
    --shadow-primary: 0 10px 20px rgba(255, 23, 68, 0.3);
}

/* Red-Black Theme Design Overrides */
[data-theme="red-black"] .btn-primary {
    background: linear-gradient(135deg, #ff1744 0%, #111111 100%) !important;
    border: 1px solid #ff1744 !important;
    box-shadow: 0 10px 20px rgba(255, 23, 68, 0.25) !important;
}
[data-theme="red-black"] .btn-primary:hover {
    background: linear-gradient(135deg, #d50000 0%, #000000 100%) !important;
    box-shadow: 0 12px 24px rgba(255, 23, 68, 0.4) !important;
}
[data-theme="red-black"] .btn-call {
    background: linear-gradient(135deg, #ff1744 0%, #111111 100%) !important;
    box-shadow: 0 6px 12px rgba(255, 23, 68, 0.25) !important;
}
[data-theme="red-black"] .btn-call:hover {
    background: linear-gradient(135deg, #d50000 0%, #000000 100%) !important;
}
[data-theme="red-black"] .topbar-bg-split {
    background: linear-gradient(90deg, #111111 50%, #ff1744 100%) !important;
}
[data-theme="red-black"] .topbar-bg-split::before {
    display: none !important;
}
[data-theme="red-black"] .service-card:hover .service-icon {
    background: linear-gradient(135deg, #ff1744 0%, #111111 100%) !important;
    color: #ffffff !important;
}
[data-theme="red-black"] .cta-box:nth-child(2) {
    background: linear-gradient(135deg, #ff1744 0%, #111111 100%) !important;
    box-shadow: 0 10px 20px rgba(255, 23, 68, 0.25) !important;
}
[data-theme="red-black"] .cta-box:nth-child(2):hover {
    background: linear-gradient(135deg, #d50000 0%, #000000 100%) !important;
}
[data-theme="red-black"] .slider-dot.active {
    background: #ff1744 !important;
}
[data-theme="red-black"] .why-stats-overlay {
    border-left: 5px solid #ff1744 !important;
}

/* Crimson Theme */
[data-theme="crimson"] {
    --primary: #ed1d24;
    --primary-rgb: 237, 29, 36;
    --primary-hover: #d0141a;
    --shadow-primary: 0 10px 20px rgba(237, 29, 36, 0.3);
}

/* Navy Theme */
[data-theme="navy"] {
    --primary: #091742;
    --primary-rgb: 9, 23, 66;
    --primary-hover: #050f2b;
    --shadow-primary: 0 10px 20px rgba(9, 23, 66, 0.4);
}

/* Navy Theme Readability Overrides */
[data-theme="navy"] header:not(.sticky) .logo-icon {
    fill: #ffffff !important;
}
[data-theme="navy"] header:not(.sticky) .nav-phone svg {
    color: #ffffff !important;
}
[data-theme="navy"] .topbar-left-content svg {
    color: #3b82f6 !important;
}
[data-theme="navy"] .hero-badge {
    color: #3b82f6 !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    background: rgba(59, 130, 246, 0.1) !important;
}
[data-theme="navy"] .hero-particles span {
    background: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.4) !important;
}
[data-theme="navy"] .booking-feature-icon {
    color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}
[data-theme="navy"] .pricing-card.popular .popular-badge {
    background: #3b82f6 !important;
    color: #ffffff !important;
}
[data-theme="navy"] .pricing-card.popular .pricing-features li:not(.disabled) svg {
    color: #3b82f6 !important;
}
[data-theme="navy"] .contact-detail-icon {
    color: #3b82f6 !important;
}
[data-theme="navy"] footer .footer-col h3::after {
    background-color: #3b82f6 !important;
}
[data-theme="navy"] .footer-links a:hover,
[data-theme="navy"] .footer-bottom-links a:hover {
    color: #3b82f6 !important;
}
[data-theme="navy"] .footer-contact-item svg {
    color: #3b82f6 !important;
}
[data-theme="navy"] .newsletter-form input:focus {
    border-color: #3b82f6 !important;
}

/* White Theme Readability Overrides */
[data-theme="white"] .logo-icon {
    fill: var(--secondary) !important;
}
[data-theme="white"] .logo-text span {
    color: #888888 !important;
}
[data-theme="white"] header.sticky .logo-text {
    color: #ffffff !important;
}
header.sticky .nav-phone {
    color: #ffffff !important;
}
header.sticky .logo-text span {
    color: #888888 !important;
}
[data-theme="white"] .topbar-right-content a,
[data-theme="white"] .topbar-right-content .separator {
    color: var(--secondary) !important;
}
[data-theme="white"] .topbar-right-content svg {
    color: var(--secondary) !important;
}
[data-theme="white"] .topbar-left-content svg {
    color: #888888 !important;
}
[data-theme="white"] .btn-primary {
    color: var(--secondary) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}
[data-theme="white"] .btn-primary:hover {
    background-color: #f1f5f9 !important;
    color: #000 !important;
}
[data-theme="white"] .service-check-item svg {
    color: var(--secondary) !important;
}
[data-theme="white"] .about-check-item svg {
    fill: var(--secondary) !important;
}
[data-theme="white"] .service-card:hover .service-icon {
    background: #1a1a1a !important;
    color: #ffffff !important;
}
[data-theme="white"] .booking-feature-icon {
    color: var(--secondary) !important;
    background: rgba(255, 255, 255, 0.9) !important;
}
[data-theme="white"] .service-link {
    color: var(--secondary) !important;
}
[data-theme="white"] .footer-links a:hover,
[data-theme="white"] .footer-bottom-links a:hover {
    color: #ffffff !important;
}
[data-theme="white"] .footer-contact-item svg {
    color: #ffffff !important;
}
[data-theme="white"] .slider-dot.active {
    background: var(--secondary) !important;
}
[data-theme="white"] .gallery-overlay {
    background: rgba(255, 255, 255, 0.9) !important;
}
[data-theme="white"] .gallery-overlay-icon {
    background: var(--secondary) !important;
    color: #ffffff !important;
}
[data-theme="white"] .btn-call {
    color: var(--secondary) !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}
[data-theme="white"] .btn-call:hover {
    background-color: #f1f5f9 !important;
}
[data-theme="white"] .cta-box:nth-child(2) {
    background: #ffffff !important;
    color: var(--secondary) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
[data-theme="white"] .cta-box:nth-child(2) h3,
[data-theme="white"] .cta-box:nth-child(2) p {
    color: var(--secondary) !important;
}
[data-theme="white"] .cta-box:nth-child(2) .cta-icon-wrapper {
    background: rgba(0, 0, 0, 0.05) !important;
}
[data-theme="white"] .cta-box:nth-child(2) .cta-icon-wrapper svg {
    stroke: var(--secondary) !important;
}
[data-theme="white"] .cta-box:not(:nth-child(2)):hover {
    border-top-color: var(--secondary) !important;
}
[data-theme="white"] .popular-badge {
    background: #ffffff !important;
    color: var(--secondary) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
[data-theme="white"] .why-stat-num {
    color: #ffffff !important;
}
[data-theme="white"] .why-icon-box {
    background: rgba(0, 0, 0, 0.05) !important;
    color: var(--secondary) !important;
}
[data-theme="white"] .why-feature-card:hover .why-icon-box {
    background: var(--secondary) !important;
    color: #ffffff !important;
}
[data-theme="white"] .process-item:hover .process-step-num {
    background: var(--secondary) !important;
}
[data-theme="white"] .process-item:hover .process-icon-wrapper {
    background: var(--secondary) !important;
    color: #ffffff !important;
}
[data-theme="white"] .nav-links a::after {
    background-color: var(--secondary) !important;
}
[data-theme="white"] .nav-phone svg {
    color: var(--secondary) !important;
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea {
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.45);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-white {
    background-color: #fff;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* --- THEME CUSTOMIZER WIDGET --- */
.theme-customizer {
    position: fixed;
    right: -220px;
    top: 25%;
    width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: 20px;
    z-index: 1000;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.theme-customizer.open {
    right: 0;
}

.theme-cog {
    position: absolute;
    left: -48px;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: #fff;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -4px 0 10px rgba(0,0,0,0.1);
}

.theme-cog svg {
    width: 24px;
    height: 24px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.theme-customizer h4 {
    margin-bottom: 12px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.theme-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.theme-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-fast);
}

.theme-dot:hover {
    transform: scale(1.15);
}

.theme-dot.active {
    border-color: var(--secondary);
}

.dot-orange { background-color: #ff8c00; }
.dot-green { background-color: #00e676; }
.dot-blue { background-color: #0077ff; }
.dot-red { background-color: #ff1744; }
.dot-yellow { background-color: #eab308; }
.dot-purple { background-color: #a855f7; }
.dot-white { background-color: #ffffff; border: 3px solid #e2e8f0 !important; }
.dot-white.active { border-color: var(--secondary) !important; }
.dot-black { background-color: #111111; }
.dot-black.active { border-color: #ff1744 !important; }
.dot-red-black { background: linear-gradient(135deg, #ff1744 50%, #111111 50%); }
.dot-red-black.active { border-color: #ff1744 !important; }
.dot-crimson { background-color: #ed1d24; }
.dot-navy { background-color: #091742; }


/* --- TOPBAR --- */
.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1000;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
}

.topbar-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary); /* Right side background (primary theme color) */
    z-index: 1;
    transition: var(--transition-smooth);
}

.topbar-bg-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 53%;
    height: 100%;
    background: var(--secondary); /* Left side background (dark charcoal/slate) */
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.topbar-left-content,
.topbar-right-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-left-content a,
.topbar-right-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    transition: var(--transition-fast);
}

.topbar-left-content a:hover,
.topbar-right-content a:hover {
    opacity: 0.85;
}

.topbar-left-content svg,
.topbar-right-content svg {
    width: 14px;
    height: 14px;
    color: var(--primary); /* Support & Email icon color uses primary theme color */
    fill: none;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.topbar-right-content svg {
    color: #ffffff; /* Helpline phone icon in red/primary section */
}

.topbar-right-content .separator {
    color: rgba(255, 255, 255, 0.4);
}

.topbar-left-content .separator {
    color: rgba(255, 255, 255, 0.2);
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 5px;
}

.topbar-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-fast);
}

.topbar-socials a:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.topbar-socials svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* --- HEADER / NAVBAR --- */
header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition-smooth);
    padding: 20px 0;
    background: rgba(11, 12, 16, 0.98) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.sticky {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background: rgba(11, 12, 16, 0.98) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: var(--shadow-md) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

header.sticky .logo-text {
    color: #ffffff !important;
}
header.sticky .nav-phone {
    color: #ffffff !important;
}
header.sticky .logo-text span {
    color: var(--primary);
}

header.sticky .nav-links a {
    color: #ffffff !important;
}
header.sticky .nav-links a:hover {
    color: var(--primary) !important;
}

header.sticky .burger span {
    background: #ffffff !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 180px;
    height: auto;
    max-height: 48px;
    fill: var(--primary);
    transition: var(--transition-smooth);
}

.logo-text {
    display: none !important;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--secondary);
    font-weight: 550;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

/* White text for navbar initially (since hero has dark overlay) */
header:not(.sticky) .nav-links a {
    color: #ffffff;
}

header:not(.sticky) .logo-text {
    color: #ffffff;
}

header:not(.sticky) .logo-icon {
    fill: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
}

header:not(.sticky) .nav-phone {
    color: #ffffff;
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition-fast);
}

header.sticky .burger span {
    background: #ffffff !important;
}


/* --- HERO SECTION --- */
.hero {
    height: 95vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left align main container contents */
    color: #fff;
    overflow: hidden;
    padding-top: 180px; /* Shift content down further below the header overlays */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

/* Background Zoom animation */
.hero-slide.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 2;
}

.hero-slide.zoom-bg {
    animation: zoomBg 15s infinite alternate ease-in-out;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left; /* Align text content left */
    max-width: 1200px;
    padding-bottom: 40px;
    width: 100%;
}

.hero-flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-text-col {
    flex: 1.2;
    max-width: 650px;
    opacity: 0;
    animation: animTextCol 15s infinite;
}

.hero-text-col h1,
.hero-text-col p,
.hero-text-col .hero-badge,
.hero-text-col .hero-btns {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.hero-text-col h1 {
    display: inline-block;
    background: rgba(0, 0, 0, 0.68);
    padding: 12px 24px;
    border-radius: 8px;
    color: #ffffff !important;
    text-shadow: none !important;
    line-height: 1.25;
    margin-bottom: 15px;
}

.hero-text-col p {
    display: inline-block;
    background: rgba(0, 0, 0, 0.68);
    padding: 10px 20px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px;
    max-width: 100%;
}

.hero-showcase-col {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 540px;
    z-index: 5;
}

/* Glowing Neon Background Circle */
.glowing-bg-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.35) 0%, rgba(var(--primary-rgb), 0) 70%);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Showcase Image Wrapper and Animation */
.showcase-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-img {
    position: absolute;
    height: auto;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
}

/* Staggered positions for layered showcase images matching reference composition */
.img-broken-car {
    right: 20%;
    bottom: 25px;
    width: 100%;
    z-index: 1;
    animation: animCar 15s infinite;
}

.img-family {
    left: -50%;
    bottom: 45px;
    width: 80%;
    z-index: 2;
    animation: animFamily 15s infinite;
}

.img-mechanic {
    right: 12%;
    bottom: 40px;
    width: 70%;
    z-index: 3;
    animation: animMechanic 15s infinite;
}

.img-showcase-logo {
    right: 25%;
    bottom: 400px;
    width: 70%;
    z-index: 4;
    animation: animShowcaseLogo 15s infinite;
    background: rgba(0, 0, 0, 0.68) !important;
    padding: 10px 15px !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes animCar {
    0%, 13.3% {
        opacity: 0;
        transform: scale(0.9) translateX(120px) rotate(-1deg);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
    20.0%, 86.7% {
        opacity: 1;
        transform: scale(1) translateX(0) rotate(0deg);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 5px 15px rgba(var(--primary-rgb), 0.2));
    }
    93.3%, 100% {
        opacity: 0;
        transform: scale(0.95) translateX(120px) rotate(1deg);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
}

@keyframes animFamily {
    0%, 30.0% {
        opacity: 0;
        transform: scale(0.9) translateX(120px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
    36.7%, 86.7% {
        opacity: 1;
        transform: scale(1) translateX(0);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 5px 15px rgba(var(--primary-rgb), 0.2));
    }
    93.3%, 100% {
        opacity: 0;
        transform: scale(0.95) translateX(120px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
}

@keyframes animMechanic {
    0%, 46.7% {
        opacity: 0;
        transform: scale(0.9) translateX(120px) rotate(1deg);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
    53.3%, 86.7% {
        opacity: 1;
        transform: scale(1) translateX(0) rotate(0deg);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 5px 15px rgba(var(--primary-rgb), 0.2));
    }
    93.3%, 100% {
        opacity: 0;
        transform: scale(0.95) translateX(120px) rotate(-1deg);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
}

@keyframes animShowcaseLogo {
    0%, 20.0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
    26.7%, 86.7% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }
    93.3%, 100% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
}

@keyframes animTextCol {
    0%, 60.0% {
        opacity: 0;
        transform: translateX(-120px);
    }
    66.7%, 86.7% {
        opacity: 1;
        transform: translateX(0);
    }
    93.3%, 100% {
        opacity: 0;
        transform: translateX(-120px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.2);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.8), 0 0 20px rgba(var(--primary-rgb), 0.4);
    border-radius: 50%;
    bottom: -10px;
    animation: floatSparks 12s linear infinite;
}

.hero-particles span:nth-child(1) { left: 10%; width: 4px; height: 4px; animation-duration: 8s; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 25%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: 2s; }
.hero-particles span:nth-child(3) { left: 45%; width: 3px; height: 3px; animation-duration: 10s; animation-delay: 4s; }
.hero-particles span:nth-child(4) { left: 60%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: 1s; }
.hero-particles span:nth-child(5) { left: 75%; width: 4px; height: 4px; animation-duration: 9s; animation-delay: 5s; }
.hero-particles span:nth-child(6) { left: 90%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 3s; }

@keyframes floatSparks {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-95vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.hero-content .hero-badge {
    opacity: 0;
    transform: translateY(20px);
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}

.hero-content .hero-btns {
    opacity: 0;
    transform: translateY(20px);
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}

.hero-live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 30px;
    color: #fff;
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.9s;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(4px);
}

.hero-live-status .live-dot {
    width: 8px;
    height: 8px;
    background-color: #00e676;
    border-radius: 50%;
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 230, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

@keyframes heroSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 750px; /* Limit header width to keep layout clean */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 600px; /* Limit description text width */
    margin-left: 0;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start; /* Left align CTA buttons */
}

/* --- QUICK CTA BOXES --- */
.quick-cta {
    position: relative;
    margin-top: -70px;
    z-index: 10;
    width: 100%;
}

.quick-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cta-box {
    background: var(--secondary);
    color: #fff;
    padding: 24px 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
    box-shadow: var(--shadow-md);
}

.cta-box:nth-child(2) {
    background: var(--primary);
    box-shadow: var(--shadow-primary);
}

.cta-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cta-box:not(:nth-child(2)):hover {
    border-top-color: var(--primary);
}

.cta-box:nth-child(2):hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.45);
}

.cta-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-box:nth-child(2) .cta-icon-wrapper {
    background: rgba(0,0,0,0.15);
}

.cta-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

.cta-info h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.cta-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}


/* --- SECTION LAYOUTS --- */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
}


/* --- ABOUT SECTION --- */
.about {
    padding-top: 100px;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;

}

.about-img-col {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
    transform: scale(1.04);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    padding: 24px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-primary);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-experience-badge .years {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-experience-badge .text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-info h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-checklist {
    margin-bottom: 30px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-check-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}


/* --- DYNAMIC CALL TO ACTION BANNER --- */
.cta-banner {
    position: relative;
    color: #fff;
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.cta-banner-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-banner-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('../images/cta_mechanic.png');
    background-size: cover;
    background-position: center;
    animation: ctaPan 22s infinite alternate ease-in-out;
}

@keyframes ctaPan {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-3%, -3%) scale(1.08);
    }
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.82) 0%, rgba(var(--primary-rgb), 0.25) 100%);
    transition: var(--transition-smooth);
}

.cta-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 60%);
    animation: ctaGlow 10s infinite alternate ease-in-out;
    opacity: 0.85;
}

@keyframes ctaGlow {
    0% {
        transform: scale(0.8) translate(-10%, -10%);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3) translate(10%, 10%);
        opacity: 0.9;
    }
}

.cta-banner-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.25;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 35px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cta-pulse-button-wrapper {
    display: inline-block;
    position: relative;
}

.btn-pulse {
    position: relative;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}


/* --- PROCESS / HOW WE DO IT --- */
.process {
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.process-step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 3px solid var(--bg-light);
    transition: var(--transition-smooth);
}

.process-item:hover .process-step-num {
    background: var(--primary);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.process-item:hover .process-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.process-icon-wrapper svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.process-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* --- SERVICES GRID --- */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

.service-info {
    padding: 30px;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-sm);
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -57px;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.service-info h3 {
    font-size: 1.35rem;
    margin-top: 15px;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-checklist {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    border-top: 1px dashed var(--border-color);
    padding-top: 18px;
}

.service-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.service-check-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}


/* --- EMERGENCY / PRICING PLANS --- */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.pricing-card.popular {
    background: var(--secondary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular h3,
.pricing-card.popular .price,
.pricing-card.popular .period {
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-card .price-wrapper {
    margin-bottom: 30px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

.pricing-card .period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-card.popular .period {
    color: rgba(255,255,255,0.6);
}

.pricing-features {
    margin-bottom: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.pricing-card.popular .pricing-features {
    border-top-color: rgba(255,255,255,0.1);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-features li:not(.disabled) svg {
    color: var(--primary);
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

.pricing-card .btn {
    width: 100%;
}


/* --- BOOKING BANNER SECTION --- */
.booking-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.booking-section-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.booking-section-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('../images/booking_bg.png');
    background-size: cover;
    background-position: center;
    animation: bookingPan 25s infinite alternate ease-in-out;
}

@keyframes bookingPan {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-4%, 4%) scale(1.1);
    }
}

.booking-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(var(--primary-rgb), 0.15) 100%);
}

.booking-section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 60%);
    animation: bookingGlow 12s infinite alternate ease-in-out;
    opacity: 0.8;
}

@keyframes bookingGlow {
    0% {
        transform: scale(0.9) translate(5%, -5%);
    }
    100% {
        transform: scale(1.2) translate(-5%, 5%);
    }
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.10fr 0.90fr;
    gap: 60px;
    align-items: center;
}

.booking-text h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.booking-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.booking-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.2);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-feature-icon svg {
    width: 20px;
    height: 20px;
}

.booking-feature-item p {
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.booking-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.booking-form-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-form input,
.booking-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-form select option {
    background: var(--secondary);
    color: #fff;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.booking-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Success notification message inside form */
.form-success-msg {
    display: none;
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #00e676;
    padding: 16px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}


/* --- WHY CHOOSE US --- */
.why-choose-us {
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.why-img-col {
    position: relative;
}

.why-img-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.why-stats-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary);
}

.why-stat-box {
    text-align: center;
}

.why-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.why-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-feature-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.why-feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.why-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.why-feature-card:hover .why-icon-box {
    background: var(--primary);
    color: #fff;
}

.why-icon-box svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.why-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* --- BRAND SLIDER --- */
.brands {
    background: var(--bg-light);
    padding: 60px 0;
    overflow: hidden;
}

.brand-ticker-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brand-ticker {
    display: flex;
    width: max-content;
    animation: ticker 25s linear infinite;
    gap: 80px;
}

.brand-ticker:hover {
    animation-play-state: paused;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

.brand-logo svg,
.brand-logo img {
    height: 45px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

.brand-logo svg path {
    transition: var(--transition-fast);
}

.brand-logo svg path[fill="none"] {
    fill: none !important;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--bg-white);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 50px 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 50px;
    height: 50px;
    opacity: 0.08;
    color: var(--secondary);
}

.testimonial-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.user-avatar svg {
    background: #e9ecef;
    color: #adb5bd;
    width: 100%;
    height: 100%;
}

.user-info {
    text-align: left;
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #ffc107;
    margin-bottom: 15px;
    justify-content: center;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.25);
}


/* --- GALLERY SECTION --- */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.85);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.10);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.6);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay-icon {
    transform: scale(1);
}

.gallery-overlay-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}


/* --- LIGHTBOX MODAL --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--primary);
}


/* --- CONTACT SECTION --- */
.contact {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--secondary);
    color: #fff;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.contact-detail-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail-text p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--border-radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.7rem;
    margin-bottom: 25px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group-full {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-form .btn {
    grid-column: span 2;
    margin-top: 10px;
}


/* --- FOOTER --- */
footer {
    background: var(--bg-dark);
    color: #a0a0a0;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary);
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-text {
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-links a svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-links a:hover svg {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--border-radius);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form .btn {
    padding: 12px 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-developer-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-developer-link:hover {
    text-decoration: underline !important;
    opacity: 0.85;
}


/* --- ANIMATION TRIGGERS (Intersection Observer) --- */
.animate-el {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.fade-in {
    transform: translateY(0);
}

.fade-in.animated {
    opacity: 1;
}

.slide-up {
    transform: translateY(40px);
}

.slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    transform: scale(0.92);
}

.zoom-in.animated {
    opacity: 1;
    transform: scale(1);
}

.slide-left {
    transform: translateX(-60px);
}

.slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    transform: translateX(60px);
}

.slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* --- SERVICE CARD CTA BUTTONS --- */
.service-btns-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-service {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-service svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-call {
    background-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.btn-call:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(var(--primary-rgb), 0.45);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.35);
}


/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */

@media (max-width: 1024px) {
    .topbar {
        display: none;
    }
    
    header {
        position: absolute;
        top: 0;
    }

    h1 {
        font-size: 3rem !important;
    }
    
    .about-grid,
    .why-grid,
    .contact-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-experience-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .why-stats-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
    }
    
    .quick-cta {
        margin-top: -40px;
        padding: 0 24px;
        position: relative;
        z-index: 12;
    }
    
    .quick-cta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about {
        padding-top: 60px;
    }
    
    .services-grid,
    .pricing-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-flex-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-top: 20px;
    }
    
    .hero-text-col {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 210px;
    }
    
    .hero-showcase-col {
        height: 380px;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .img-broken-car {
        width: 82%;
        bottom: 15px;
        right: -2%;
    }
    
    .img-family {
        width: 42%;
        bottom: 30px;
        left: -2%;
    }
    
    .img-mechanic {
        width: 46%;
        bottom: -8px;
        right: 12%;
    }
    
    .img-showcase-logo {
        width: 28%;
        bottom: 180px;
        right: 15%;
    }
    
    .glowing-bg-circle {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        color: #fff !important;
        font-size: 1.2rem;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-right {
        margin-left: auto;
        margin-right: 20px;
    }

    .nav-right .btn {
        display: none;
    }

    .nav-phone .phone-text {
        display: none;
    }

    .nav-phone {
        padding: 6px;
    }

    .nav-phone svg {
        width: 22px;
        height: 22px;
    }
    
    .services-grid,
    .pricing-grid,
    .process-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-group-full {
        grid-column: span 1;
    }
    
    .contact-form .btn {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.3rem !important;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .hero-showcase-col {
        height: 300px;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .img-broken-car {
        width: 78%;
        bottom: 10px;
        right: -2%;
    }
    
    .img-family {
        width: 40%;
        bottom: 25px;
        left: -2%;
    }
    
    .img-mechanic {
        width: 44%;
        bottom: -5px;
        right: 12%;
    }
    
    .img-showcase-logo {
        width: 25%;
        bottom: 140px;
        right: 15%;
    }
    
    .glowing-bg-circle {
        width: 180px;
        height: 180px;
    }
}

/* --- FLOATING WHATSAPP CHAT WIDGET --- */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: var(--font-primary);
}

.wa-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
    border: none;
    outline: none;
    color: #ffffff;
}

.wa-button:hover {
    transform: scale(1.08);
    background-color: #1ebd58;
}

.wa-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    display: block;
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.wa-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-header {
    background-color: #065e52;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    color: #ffffff;
}

.wa-avatar {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065e52;
    flex-shrink: 0;
}

.wa-avatar svg {
    width: 20px;
    height: 20px;
}

.wa-profile-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wa-profile-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

.wa-profile-status {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

.wa-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    font-weight: 300;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s ease;
}

.wa-close:hover {
    color: #ffffff;
}

.wa-body {
    background-color: #efeae2;
    background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 24px 20px;
    position: relative;
}

.wa-bubble {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    position: relative;
    max-width: 85%;
}

.wa-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #ffffff transparent transparent;
}

.wa-bubble-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.wa-bubble-msg {
    font-size: 0.88rem;
    color: #111111;
    line-height: 1.4;
    white-space: pre-line;
}

.wa-footer {
    background: #ffffff;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.wa-btn {
    width: 100%;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 24px;
    padding: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.wa-btn:hover {
    background-color: #1ebd58;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}

.wa-btn:active {
    transform: translateY(0);
}

.wa-brand {
    font-size: 0.68rem;
    color: #888888;
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.wa-brand span {
    color: #ff9800;
}

.wa-brand strong {
    color: #555555;
    font-weight: 700;
}

.wa-developer-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.wa-developer-link:hover {
    color: var(--primary) !important;
    text-decoration: underline !important;
}

/* Position adjustment for small screens */
@media (max-width: 768px) {
    .wa-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .wa-popup {
        width: 300px;
        bottom: 75px;
    }
}

/* --- FLOATING CALL BUTTON --- */
.call-float-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    color: #ffffff;
    z-index: 9999; /* Under wa-widget (z-index 10000) so it hides behind the open WA popup */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
    animation: floatCallPulse 2s infinite;
}

.call-float-button:hover {
    transform: scale(1.08);
    background-color: var(--primary-hover);
}

.call-float-button svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
}

@keyframes floatCallPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.6), var(--shadow-primary);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0), var(--shadow-primary);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0), var(--shadow-primary);
    }
}

/* Adjustments for mobile view */
@media (max-width: 768px) {
    .call-float-button {
        bottom: 85px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .call-float-button svg {
        width: 22px;
        height: 22px;
    }
}

/* --- MOBILE BOTTOM STICKY ACTION BAR --- */
.mobile-sticky-bar {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    /* Hide circular floating buttons on mobile */
    .wa-widget,
    .call-float-button {
        display: none !important;
    }
    
    .mobile-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: transparent;
        padding: 10px 16px 20px;
        z-index: 9999;
        pointer-events: none; /* Let clicks pass through the transparent bar area */
    }
    
    .mobile-sticky-container {
        display: flex;
        gap: 12px;
        width: 100%;
        pointer-events: auto; /* Re-enable clicks specifically for the buttons container */
    }
    
    .sticky-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 8px;
        border-radius: 8px;
        font-family: var(--font-primary);
        font-size: 0.82rem;
        font-weight: 800;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: transform 0.2s ease, opacity 0.2s ease;
        border: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .sticky-btn:active {
        transform: scale(0.97);
    }
    
    .btn-wa {
        background-color: #25d366;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    }
    
    .btn-wa:hover {
        background-color: #1ebd58;
    }
    
    .btn-call-action {
        background-color: var(--primary);
        box-shadow: var(--shadow-primary);
    }
    
    .btn-call-action:hover {
        background-color: var(--primary-hover);
    }
    
    .sticky-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }
    
    .btn-call-action svg {
        fill: none;
        stroke: currentColor;
    }
    
    /* Add padding to body so the bottom sticky bar doesn't overlap footer content */
    body {
        padding-bottom: 70px !important;
    }
}

/* --- SUBPAGE GENERAL STYLES & BREADCRUMBS --- */
.subpage-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #2b2d42 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.subpage-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.subpage-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 800;
    letter-spacing: -1px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: var(--primary);
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumbs span.separator {
    color: rgba(255, 255, 255, 0.4);
}

/* --- MEET OUR EXPERT CREW (TEAM SECTION) --- */
.team-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.team-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e2e8f0;
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.08);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 700;
}

.team-info p.role {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition-fast);
}

.team-socials a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.team-socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* --- FAQ ACCORDION SECTION --- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.faq-item.open {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition-smooth);
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.faq-item.open .faq-icon-toggle {
    transform: rotate(45deg);
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.faq-question svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

/* --- REVIEWS PAGE GRID & REVIEW SUBMISSION FORM --- */
.reviews-page-grid {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-card-stars {
    color: #ff8c00;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-user-info h4 {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.review-user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.review-submission-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.review-form-wrapper {
    max-width: 650px;
    margin: 40px auto 0;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.review-form-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.75rem;
}

/* --- BLOG FILTERING & CARDS --- */
.blog-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background-color: var(--bg-light);
    color: var(--secondary);
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.06);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-info {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-item svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

.blog-info h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-info h3 a:hover {
    color: var(--primary);
}

.blog-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.blog-readmore:hover {
    color: var(--primary-hover);
    gap: 10px;
}

.blog-readmore svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

/* --- CONTACT MAP SECTION --- */
.contact-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.contact-map-placeholder svg.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.map-card-overlay {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
    text-align: center;
    z-index: 2;
    max-width: 320px;
}

.map-card-overlay h4 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.map-card-overlay p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* --- PAGINATION --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.pagination-item:hover,
.pagination-item.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.pagination-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* --- BLOG DETAIL PAGE LAYOUT --- */
.blog-detail-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Article Styling */
.blog-post-article {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-post-header {
    margin-bottom: 24px;
}

.blog-post-header .blog-category {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
}

.blog-post-title {
    font-size: 2.25rem;
    color: var(--secondary);
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 15px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-post-meta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.blog-post-img {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-post-body p {
    margin-bottom: 24px;
}

.blog-post-body h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin: 40px 0 20px;
    font-weight: 700;
}

.blog-post-body h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin: 30px 0 15px;
    font-weight: 600;
}

.blog-post-body blockquote {
    margin: 35px 0;
    padding: 24px 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.6;
}

.blog-post-body ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style-type: disc;
}

.blog-post-body ul li {
    margin-bottom: 10px;
}

.blog-post-body ul li strong {
    color: var(--secondary);
}

/* Author Box */
.blog-author-box {
    display: flex;
    gap: 24px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 50px 0;
    border: 1px solid var(--border-color);
}

@media (max-width: 576px) {
    .blog-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #e2e8f0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}

.author-bio p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sharing */
.blog-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.share-title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.share-socials {
    display: flex;
    gap: 12px;
}

.share-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition-fast);
}

.share-socials a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.share-socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Comments */
.comments-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 700;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-avatar svg {
    width: 28px;
    height: 28px;
}

.comment-content h5 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 650;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.comment-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* Sidebar Styling */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    border: 1px solid var(--border-color);
    border-right: none;
    background-color: var(--bg-white);
    font-size: 0.92rem;
}

.search-form button {
    padding: 0 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-form button:hover {
    background-color: var(--primary-hover);
}

.search-form svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Sidebar Categories */
.sidebar-categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 550;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.sidebar-categories-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.category-count {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    color: var(--text-muted);
}

/* Sidebar Recent Posts */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background-color: #e2e8f0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 0.92rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 4px;
}

.recent-post-info h5 a {
    color: var(--secondary);
    transition: var(--transition-fast);
}

.recent-post-info h5 a:hover {
    color: var(--primary);
}

.recent-post-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Sidebar CTA Widget */
.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--secondary) 0%, #2b2d42 100%);
    color: #ffffff;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 20%, rgba(var(--primary-rgb), 0.2) 0%, transparent 60%);
}

.sidebar-cta-widget h4 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 12px;
    z-index: 1;
    position: relative;
}

.sidebar-cta-widget p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    z-index: 1;
    position: relative;
}

.sidebar-cta-widget .btn {
    width: 100%;
    z-index: 1;
    position: relative;
}

/* --- PRODUCT & SHOP SECTION --- */
.product-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.product-img-slider {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1.02);
}

.product-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.product-card:hover .product-slide.active {
    transform: scale(1.06);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.product-img-slider:hover .slider-control {
    opacity: 1;
    visibility: visible;
}

.slider-control.prev {
    left: 12px;
}

.slider-control.next {
    right: 12px;
}

.slider-control:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.slider-control svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--primary);
    width: 18px;
    border-radius: 4px;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.product-badge.badge-new {
    background: #10b981; /* Green for new */
}

.product-badge.badge-hot {
    background: #ef4444; /* Red for hot */
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    color: #f59e0b; /* Amber star color */
    font-size: 0.85rem;
}

.product-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.product-price-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: auto;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
}

.product-old-price {
    font-size: 0.95rem;
    text-decoration: line-line-through;
    text-decoration: line-through;
    color: var(--text-muted);
}

.btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff !important;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    width: 100%;
}

.btn-buy-now:hover {
    background-color: #128c7e; /* Darker WhatsApp Green */
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

.btn-buy-now svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Shop search and filter section */
.shop-filters-wrapper {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .shop-filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-search {
    display: flex;
    position: relative;
    max-width: 320px;
    width: 100%;
}

@media (max-width: 768px) {
    .shop-search {
        max-width: 100%;
    }
}

.shop-search input {
    width: 100%;
    padding: 10px 16px;
    padding-right: 40px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.shop-search input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.shop-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.shop-search-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}





/* --- LOGO IMAGE STYLING --- */
.logo-img {
    /* border-radius: 50% !important; */
    object-fit: contain !important;
    /* border: 1px solid rgba(255, 255, 255, 0.15) !important; */
    /* background-color: #000000 !important; fallback black background to blend nicely */
}

/* --- DYNAMIC LOGO COLOR FILTERS FOR THEMES --- */
[data-theme="green"] .logo-img {
    filter: hue-rotate(117deg) brightness(1.2) !important;
}
[data-theme="blue"] .logo-img {
    filter: hue-rotate(179deg) !important;
}
[data-theme="red"] .logo-img {
    filter: hue-rotate(316deg) saturate(1.5) !important;
}
[data-theme="yellow"] .logo-img {
    filter: hue-rotate(14deg) saturate(1.2) !important;
}
[data-theme="purple"] .logo-img {
    filter: hue-rotate(239deg) !important;
}
[data-theme="white"] .logo-img {
    filter: grayscale(1) brightness(1.5) !important;
}
[data-theme="black"] .logo-img {
    filter: grayscale(1) brightness(0.8) !important;
}
[data-theme="red-black"] .logo-img {
    filter: hue-rotate(316deg) saturate(1.5) !important;
}
[data-theme="crimson"] .logo-img {
    filter: hue-rotate(325deg) saturate(1.5) !important;
}
[data-theme="navy"] .logo-img {
    filter: hue-rotate(194deg) brightness(0.8) !important;
}

/* --- PREMIUM LOGO INTRO ANIMATION --- */
body.intro-active {
    overflow: hidden !important;
}

#header {
    transition: opacity 0.8s ease-in-out !important;
}

body.intro-active #header {
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-content,
.hero-particles,
.quick-cta {
    transition: opacity 1s ease-out, transform 1s ease-out !important;
}

body.intro-active .hero-content,
body.intro-active .hero-particles,
body.intro-active .quick-cta {
    opacity: 0 !important;
    transform: translateY(30px) !important;
}

.logo-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b0c10;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: background-color 0.8s ease-out;
}

.logo-intro-overlay.fade-bg {
    background-color: rgba(11, 12, 16, 0.4);
    backdrop-filter: blur(4px);
}

.intro-logo-anim {
    max-width: 90vw;
    height: auto;
    object-fit: contain;
    transform-origin: center center;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Phase 1: Spinning & Scaling In */
.intro-logo-anim.phase-1 {
    animation: introSpinScale 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Phase 2: Massive zoom to cover background size */
.intro-logo-anim.phase-2 {
    animation: introZoomBg 1s cubic-bezier(0.64, 0, 0.78, 0) forwards;
}

@keyframes introSpinScale {
    0% {
        transform: scale(0.01) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(1080deg);
        opacity: 1;
    }
}

@keyframes introZoomBg {
    0% {
        transform: scale(1) rotate(1080deg);
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        transform: scale(12) rotate(1080deg);
        opacity: 0.15;
        filter: blur(10px);
    }
}
