@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700|Rubik:300,400,500,700&display=swap');

:root {
    /* Primary Brand Colors - Keep existing but adjust for dark */
    --primary-color: #33d65b;        /* Fresh Green - works on dark */
    --primary-glow: rgba(51, 214, 91, 0.3);
    --secondary-color: #009cdc;      /* Bright Blue - works on dark */
    --secondary-glow: rgba(0, 156, 220, 0.3);

    /* Dark Background System */
    --bg-dark-primary: #0a0e17;      /* Deep dark blue-black */
    --bg-dark-secondary: #131824;    /* Slightly lighter */
    --bg-dark-tertiary: #1a1f2e;     /* Card backgrounds */

    /* Glass Tint Colors */
    --glass-tint-dark: rgba(26, 31, 46, 0.7);     /* Dark glass base */
    --glass-tint-light: rgba(255, 255, 255, 0.05); /* Light overlay */
    --glass-tint-accent: rgba(0, 156, 220, 0.1);   /* Blue tint */

    /* Refined Glass Effects (10-20px blur, 0.6-0.8 opacity) */
    --glass-bg-subtle: rgba(26, 31, 46, 0.6);
    --glass-bg-medium: rgba(26, 31, 46, 0.7);
    --glass-bg-strong: rgba(26, 31, 46, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-glow: rgba(51, 214, 91, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --glass-shadow-hover: 0 12px 48px 0 rgba(0, 0, 0, 0.6);

    /* Text Colors for Dark Mode */
    --text-primary: #ffffff;
    --text-secondary: #b8c1d8;
    --text-muted: #7a8299;
    --text-glow: rgba(255, 255, 255, 0.9);

    /* Gradient Colors for Animations */
    --gradient-start: #009cdc;
    --gradient-mid: #8e44ad;
    --gradient-end: #33d65b;

    /* Keep existing fonts */
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Gradient Keyframes */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientRotate {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-glow),
                    0 0 40px var(--primary-glow);
    }
    50% {
        box-shadow: 0 0 30px var(--primary-glow),
                    0 0 60px var(--primary-glow);
    }
}

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

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gradient Background Classes */
.gradient-bg-animated {
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-mid),
        var(--gradient-end)
    );
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
}

.gradient-mesh-bg {
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 156, 220, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(51, 214, 91, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(142, 68, 173, 0.1) 0%, transparent 50%),
        var(--bg-dark-primary);
    background-size: 400% 400%;
    animation: gradientRotate 20s ease infinite;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-dark-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

/* Add gradient mesh background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 156, 220, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(51, 214, 91, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1.title-underline,
h2.title-underline {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 60px;
    font-size: 2.8rem;
}

h1.title-underline::after,
h2.title-underline::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--primary-glow);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
}

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

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

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

.text-warning {
    color: #ffc107;
}

/* Yellow for stars */

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow),
                0 0 40px var(--primary-glow);
    border-color: var(--primary-color);
}

/* Glassmorphism Classes - Enhanced Dark Glass System */
.glass-card {
    background: var(--glass-bg-medium);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 30px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

/* Glass inner glow effect */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-glow);
    box-shadow: var(--glass-shadow-hover),
                0 0 30px var(--primary-glow);
}

/* Subtle Glass Variant */
.glass-card-subtle {
    background: var(--glass-bg-subtle);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    padding: 30px;
    transition: var(--transition);
}

/* Strong Glass Variant */
.glass-card-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* 3D Hover Effects */
.hover-3d {
    transform-style: preserve-3d;
    transition: var(--transition-slow);
}

.hover-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(20px);
}

/* Tilt Effect (Applied via JS) */
.tilt-effect {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.tilt-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.1),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: inherit;
}

.tilt-effect:hover::after {
    opacity: 1;
}

/* Floating Animation */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Glow on Hover */
.glow-on-hover {
    transition: var(--transition);
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px var(--primary-glow),
                0 0 40px var(--primary-glow),
                inset 0 0 20px rgba(51, 214, 91, 0.1);
}

/* Loading Animations */
.loading-skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-dark-tertiary) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        var(--bg-dark-tertiary) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 8px;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Reveal Animations (triggered by Intersection Observer) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.glass-nav {
    background: rgba(26, 31, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Home Page Specific Nav: Overlay transparent initially */
.glass-nav.home-nav {
    position: fixed;
    width: 100%;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    box-shadow: none;
}

/* Scrolled State (Applied via JS) */
.glass-nav.scrolled {
    background: rgba(26, 31, 46, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
    border-bottom: 1px solid rgba(51, 214, 91, 0.2);
}

/* Header */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    /* Standard height */
    transition: var(--transition-slow);
}

/* Smaller header when scrolled on internal pages */
.glass-nav.scrolled .container {
    height: 95px;
    /* Compact height when scrolled */
}

/* Taller header for home page */
.glass-nav.home-nav .container {
    height: 130px;
    /* Extra height for larger logo on home page */
}

.glass-nav.home-nav.scrolled .container {
    height: 110px;
    /* Return to standard height when scrolled on home */
}

.logo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 12px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(51, 214, 91, 0.2);
    transition: var(--transition-slow);
    border: 1px solid rgba(51, 214, 91, 0.3);
}

.logo:hover {
    box-shadow: 0 6px 30px rgba(51, 214, 91, 0.4);
    transform: translateY(-2px);
}

.logo img {
    height: 75px;
    /* Standard size for inner pages */
    transition: var(--transition-slow);
    display: block;
}

/* More padding on internal pages (not home page) */
.glass-nav:not(.home-nav) .logo {
    padding: 14px 18px;
}

/* Smaller logo when scrolled on internal pages */
.glass-nav.scrolled .logo {
    padding: 12px 24px;
}

.glass-nav.scrolled .logo img {
    height: 65px;
    /* Original smaller size when scrolled */
}

/* Larger logo specifically for home page */
.glass-nav.home-nav .logo {
       padding: 9px 6px;
    box-shadow: 0 6px 25px rgba(51, 214, 91, 0.3);
}

.glass-nav.home-nav .logo img {
    height: 84px;
    /* Larger size for home page */
}

/* Adjust logo size when scrolled on home page */
.glass-nav.home-nav.scrolled .logo {
    padding: 9px 6px;
}

.glass-nav.home-nav.scrolled .logo img {
    height: 70px;
    /* Medium size when scrolled on home */
}

nav {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    padding: 5px 0;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* Specific Style for Home Nav Overlay */
.glass-nav.home-nav .nav-links a {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-links a.active {
    color: var(--primary-color);
}

/* Phone Button in Header */
.phone-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 50px;
    margin-left: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(51, 214, 91, 0.3);
    animation: buttonGlow 3s ease-in-out infinite;
}

/* Glow animation for the button */
@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(51, 214, 91, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(51, 214, 91, 0.6), 0 0 15px rgba(51, 214, 91, 0.4);
    }
}

.phone-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.phone-button:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.phone-button i {
    font-size: 16px;
    animation: phoneRing 2s ease-in-out infinite;
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(51, 214, 91, 0.5);
}

.phone-button:hover i {
    animation: phoneShake 0.5s ease-in-out infinite;
}

/* Ensure button is visible on home page transparent nav */
.glass-nav.home-nav .phone-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 20px rgba(51, 214, 91, 0.5);
}

/* Phone number text */
.phone-number {
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Ring Animation */
@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Shake Animation on Hover */
@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Tablet/smaller desktop: show only icon */
@media (max-width: 1024px) and (min-width: 769px) {
    .phone-button {
        padding: 12px 15px;
        margin-left: 15px;
    }

    .phone-number {
        display: none;
    }

    .phone-button i {
        font-size: 18px;
    }
}

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

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

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 5px;
    transition: var(--transition);
    border-radius: 3px;
}

.glass-nav.home-nav .burger div {
    background: #ffffff;
}

/* Burger Animation when active */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .container {
    z-index: 9;
}

/* Slider Overlay */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 23, 0.7),
        rgba(19, 24, 36, 0.6)
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--text-primary);
    z-index: 10;
    padding: 40px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    max-width: 700px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.slide-content h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(51, 214, 91, 0.5);
}

.slide-content p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.service-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Dark Glass Service Cards */
.services-grid .glass-card {
    background: var(--glass-bg-medium);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px;
}

.services-grid .glass-card:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-glow);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(51, 214, 91, 0.3);
}

.services-grid .glass-card h3,
.services-grid .glass-card p {
    color: var(--text-primary);
}

/* Icon wrapper div — width/height/margin/filter apply correctly to a block element */
.service-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(51, 214, 91, 0.5));
}

/* Font icon inside wrapper — <i> is inline, control only font-size & color */
.services-grid .glass-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    fill: var(--secondary-color);
    transition: var(--transition);
}
.services-grid  .btn-add-cart  i {
     font-size: 0.9rem;
    color: #fff;
    fill: #fff;
}
/* Hover: animate the wrapper div (transform/filter), change icon colour */
.service-card:hover .service-icon-svg {
    transform: scale(1.15) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(51, 214, 91, 0.8));
}

.service-card:hover .service-icon-svg i {
    color: var(--primary-color);
    fill: var(--primary-color);
}

/* Make sure the headings inside service cards override default */
.service-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px;
}

@media (min-width: 992px) {
    .step-item:not(:last-child)::after {
        content: '\f054';
        /* FontAwesome Chevron Right */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: var(--secondary-color);
        opacity: 0.5;
    }
}

.step-item .glass-card {
    height: 100%;
    padding: 50px 25px;
    /* background: rgba(255, 255, 255, 0.3); */
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Reviews Grid */
.reviews-section {
    background: url('../images/parallax-img-01.jpg') fixed center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 23, 0.85),
        rgba(0, 156, 220, 0.7)
    );
}

.reviews-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* Wider for grid */
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    position: relative;
    color: white;
    padding: 35px;
    height: 100%;
    background: var(--glass-bg-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: var(--transition-slow);
    text-align: left;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--glass-bg-medium);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(51, 214, 91, 0.2);
    border-color: var(--glass-border-glow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #28a745);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(51, 214, 91, 0.4);
}

.review-avatar i {
    font-size: 24px;
    color: white;
}

.review-info {
    flex: 1;
}

.review-name {
    margin: 0 0 5px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    font-family: var(--font-heading);
}

.review-quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    font-size: 14px;
    color: #ffc107;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, var(--bg-dark-secondary), var(--bg-dark-primary));
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
}

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

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-col p,
.footer-links li,
.footer-links li a {
    color: var(--text-secondary);
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 90px;
        height: calc(100vh - 90px);
        background: var(--bg-dark-secondary);
        flex-direction: column;
        width: 100%;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .burger {
        display: block;
        margin-left: auto;
    }

    nav {
        width: auto;
    }

    /* Hide phone button completely on mobile - users can find number in footer */
    .phone-button {
        display: none !important;
    }

    /* Header stays at top, phone button stays at bottom */
    header.glass-nav {
        position: sticky;
        top: 0;
    }

    header .container {
        height: 90px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .glass-nav.scrolled .container {
        height: 80px;
    }

    .glass-nav.home-nav {
        position: fixed;
        top: 0;
    }

    .glass-nav.home-nav .container {
        height: 100px;
    }

    .glass-nav.home-nav.scrolled .container {
        height: 90px;
    }

    /* Ensure phone button position is never affected by scroll state */
    .glass-nav.scrolled .phone-button,
    .glass-nav.home-nav.scrolled .phone-button {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .logo {
        padding: 8px 15px;
        border-radius: 12px;
    }

    .glass-nav:not(.home-nav) .logo {
        padding: 10px 18px;
    }

    .glass-nav.scrolled .logo {
        padding: 8px 16px;
    }

    .logo img {
        height: 55px;
    }

    .glass-nav.scrolled .logo img {
        height: 45px;
    }

    .glass-nav.home-nav .logo img {
        height: 65px;
    }

    .glass-nav.home-nav.scrolled .logo img {
        height: 55px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    h1.title-underline,
    h2.title-underline {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .services-grid {
        gap: 25px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-card {
        padding: 30px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-avatar i {
        font-size: 20px;
    }

    .review-name {
        font-size: 1.05rem;
    }

    .review-quote-icon {
        font-size: 2rem;
    }

    .review-text {
        font-size: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ===== CART SYSTEM ===== */

/* Floating cart widget */
.cart-widget-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: none;
}

.cart-widget-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(51, 214, 91, 0.4);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cart-widget-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(51, 214, 91, 0.6);
    color: #fff;
}

/* Price section inside service cards */
.cart-price-section {
    margin-top: 15px;
    padding: 15px;
    background: rgba(51, 214, 91, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(51, 214, 91, 0.2);
}

.cart-price-label {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.cart-price-unit {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Quantity input */
.cart-qty-input {
    display: inline-block;
    width: 80px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(26, 31, 46, 0.8);
    color: #fff;
    font-family: inherit;
    text-align: center;
    font-size: 0.95rem;
    vertical-align: middle;
    margin-right: 8px;
}

.cart-qty-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(51, 214, 91, 0.2);
}

/* Fix <button> elements using .btn class */
button.btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-primary);
    width: auto;
    flex: 0 0 auto;
}

button.btn:focus {
    outline: none;
}

/* Suppress ripple ::before on <button> — overflow:hidden clips differently than on <a> */
button.btn::before {
    display: none;
}

button.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow), 0 0 30px var(--primary-glow);
}

/* Add to cart button on service cards */
.btn-add-cart {
    padding: 9px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    vertical-align: middle;
}

.btn-enquire {
    padding: 11px 25px;
    font-size: 13px;
}

/* Nav cart icon button */
.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    color: #fff !important;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 214, 91, 0.3);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(51, 214, 91, 0.55);
    color: #fff !important;
}

.nav-cart-btn::after {
    display: none !important;
}

.nav-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 3px;
    pointer-events: none;
}

/* "Onwards" badge */
.price-onwards-badge {
    display: inline-block;
    background: rgba(0, 156, 220, 0.15);
    border: 1px solid rgba(0, 156, 220, 0.3);
    color: var(--secondary-color);
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 500;
}

/* Checkout page cart table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    padding: 12px 15px;
    text-align: left;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-table td {
    padding: 14px 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-qty-sm {
    width: 70px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(26, 31, 46, 0.8);
    color: #fff;
    font-family: inherit;
    text-align: center;
    font-size: 0.9rem;
}

.cart-qty-sm:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-remove {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-remove:hover {
    background: rgba(231, 76, 60, 0.3);
}

/* Booking form input styles */
.booking-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(26, 31, 46, 0.6);
    font-family: inherit;
    color: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.booking-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(51, 214, 91, 0.15);
}

.booking-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

/* Particle System */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Floating Orbs (CSS-based backup) */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
    filter: blur(40px);
    animation: floatOrb 20s infinite ease-in-out;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, -100px); }
    50% { transform: translate(-50px, 50px); }
    75% { transform: translate(50px, 100px); }
}

.orb:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 156, 220, 0.15), transparent);
    animation-duration: 25s;
}

.orb:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    background: radial-gradient(circle, rgba(51, 214, 91, 0.15), transparent);
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.15), transparent);
    animation-duration: 20s;
    animation-delay: -10s;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #particles-canvas,
    .floating-orbs {
        display: none;
    }
}