/*
Theme Name: CleanGuin
Theme URI: https://cleanguin.pl
Author: CleanGuin
Author URI: https://cleanguin.pl
Description: Professional WordPress theme for upholstery cleaning services in Pabianice
Version: 2.7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleanguin
Tags: cleaning, services, booking, woocommerce
*/

/* ===================================
   CSS Variables & Reset
=================================== */
:root {
    /* Arctic / Ice Theme Colors */
    --primary-color: #0EA5E9;
    --primary-dark: #0369A1;
    --primary-light: #7DD3FC;
    --secondary-color: #FFFFFF;
    --accent-color: #22D3EE;
    --accent-light: #A5F3FC;
    
    /* Arctic specific colors */
    --ice-blue: #BAE6FD;
    --frost-white: #F0F9FF;
    --arctic-dark: #0C4A6E;
    --snow-white: #FAFEFF;
    --glacier-blue: #0284C7;
    
    --text-dark: #0F172A;
    --text-light: #475569;
    --text-muted: #94A3B8;
    --bg-light: #F0F9FF;
    --bg-section: #E0F2FE;
    --border-color: #BAE6FD;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgba(14, 165, 233, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(14, 165, 233, 0.1), 0 2px 4px -1px rgba(14, 165, 233, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(14, 165, 233, 0.1), 0 4px 6px -2px rgba(14, 165, 233, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(14, 165, 233, 0.15), 0 10px 10px -5px rgba(14, 165, 233, 0.08);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===================================
   Typography
=================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

/* ===================================
   Layout & Container
=================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Buttons
=================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.5);
}

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

/* ===================================
   Header & Navigation
=================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: block;
    flex-shrink: 0;
    line-height: 0;
    position: relative;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 220px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ===================================
   Ice Crystal Animation (Arctic Theme)
=================================== */
.water-drops {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 45px;
    pointer-events: none;
    overflow: visible;
}

.water-drop {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, var(--ice-blue) 50%, var(--glacier-blue) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(186,230,253,0.8));
}

.water-drop::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

/* Add subtle sparkle effect */
.water-drop::before {
    content: '✦';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6px;
    color: var(--ice-blue);
    opacity: 0;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateX(-50%) scale(0.5); }
    50% { opacity: 1; transform: translateX(-50%) scale(1); }
}

.water-drop:nth-child(1) {
    left: 10px;
    animation: iceDrop 2.5s ease-in infinite;
    animation-delay: 0s;
}

.water-drop:nth-child(1)::before {
    animation-delay: 0.3s;
}

.water-drop:nth-child(2) {
    left: 25px;
    width: 6px;
    height: 9px;
    animation: iceDrop 2.8s ease-in infinite;
    animation-delay: 0.8s;
}

.water-drop:nth-child(2)::before {
    animation-delay: 1.1s;
}

.water-drop:nth-child(3) {
    left: 40px;
    width: 7px;
    height: 10px;
    animation: iceDrop 2.2s ease-in infinite;
    animation-delay: 1.5s;
}

.water-drop:nth-child(3)::before {
    animation-delay: 1.8s;
}

@keyframes iceDrop {
    0% {
        transform: translateY(0) scale(0.3) rotate(0deg);
        opacity: 0;
    }
    10% {
        transform: translateY(0) scale(1) rotate(5deg);
        opacity: 0.95;
    }
    30% {
        transform: translateY(10px) scale(0.95) rotate(-3deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) scale(0.9) rotate(3deg);
    }
    90% {
        transform: translateY(38px) scale(0.7) rotate(-5deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(42px) scale(0.4) rotate(0deg);
        opacity: 0;
    }
}

/* Ice splash effect at bottom */
.water-splash {
    position: absolute;
    bottom: -8px;
    width: 100%;
    height: 12px;
    pointer-events: none;
}

.splash-ring {
    position: absolute;
    width: 14px;
    height: 5px;
    border: 1px solid var(--ice-blue);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px rgba(186,230,253,0.6);
}

.splash-ring:nth-child(1) {
    left: 8px;
    animation: iceSplash 2.5s ease-out infinite;
    animation-delay: 0.7s;
}

.splash-ring:nth-child(2) {
    left: 23px;
    animation: iceSplash 2.8s ease-out infinite;
    animation-delay: 1.5s;
}

.splash-ring:nth-child(3) {
    left: 38px;
    animation: iceSplash 2.2s ease-out infinite;
    animation-delay: 2.2s;
}

@keyframes iceSplash {
    0%, 70% {
        transform: scale(0);
        opacity: 0;
    }
    75% {
        transform: scale(0.6);
        opacity: 0.9;
        border-color: var(--glacier-blue);
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
        border-color: var(--ice-blue);
    }
}

/* Hide drops on mobile to save performance */
@media (max-width: 768px) {
    .water-drops {
        display: none;
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.header-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.header-location svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   Hero Section - Arctic Theme
=================================== */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, var(--frost-white) 0%, var(--snow-white) 50%, white 100%);
    position: relative;
    overflow: hidden;
}

/* Aurora borealis background effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(186, 230, 253, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(2, 132, 199, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 60%, rgba(14, 165, 233, 0.2) 0%, transparent 45%);
    z-index: 0;
    animation: aurora-shift 15s ease-in-out infinite;
}

/* Floating ice crystals */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.9) 50%, transparent 50%),
        radial-gradient(3px 3px at 25% 60%, rgba(186,230,253,0.8) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 30%, rgba(255,255,255,0.7) 50%, transparent 50%),
        radial-gradient(4px 4px at 55% 70%, rgba(186,230,253,0.6) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 15%, rgba(255,255,255,0.8) 50%, transparent 50%),
        radial-gradient(3px 3px at 85% 50%, rgba(186,230,253,0.7) 50%, transparent 50%),
        radial-gradient(2px 2px at 95% 80%, rgba(255,255,255,0.9) 50%, transparent 50%);
    animation: float-crystals 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes aurora-shift {
    0%, 100% { opacity: 0.8; transform: translateX(0) scale(1); }
    50% { opacity: 1; transform: translateX(-5%) scale(1.05); }
}

@keyframes float-crystals {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--success-color);
}

.hero-feature span {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-calculator {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.calculator-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calculator-header h3 {
    margin-bottom: 0.5rem;
}

.calculator-header p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===================================
   Services Section - Arctic Ice Cards
=================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(240,249,255,0.9) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md), 0 0 20px rgba(186,230,253,0.2);
    transition: var(--transition);
    border: 1px solid rgba(186,230,253,0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Frost edge effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--ice-blue) 20%, 
        var(--glacier-blue) 50%, 
        var(--ice-blue) 80%, 
        transparent 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

/* Inner frost glow */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(186,230,253,0.1) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 10px 40px rgba(2,132,199,0.15), var(--shadow-glow);
    border-color: var(--ice-blue);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--frost-white) 0%, var(--ice-blue) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(186,230,253,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
}

.service-card h4 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.service-price .amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-price .currency {
    font-size: 1rem;
    color: var(--text-light);
}

.service-price .unit {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   Booking Calculator Widget
=================================== */
.booking-calculator {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.booking-steps {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.booking-step {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.booking-step.active {
    color: var(--primary-color);
    background: rgba(14, 165, 233, 0.05);
}

.booking-step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.booking-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--border-color);
    border-radius: 50%;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.booking-step.active .booking-step-number {
    background: var(--primary-color);
    color: white;
}

.booking-step.completed .booking-step-number {
    background: var(--success-color);
    color: white;
}

.booking-content {
    padding: 2rem;
}

.booking-section {
    display: none;
}

.booking-section.active {
    display: block;
}

/* Service Selection */
.service-selector {
    display: grid;
    gap: 1rem;
}

.service-selector-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    gap: 0.75rem;
    flex-wrap: wrap;
}

.service-selector-item:hover {
    border-color: var(--primary-light);
}

.service-selector-item.selected {
    border-color: var(--primary-color);
    background: rgba(14, 165, 233, 0.05);
}

.service-selector-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.service-selector-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.service-selector-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-color);
}

.service-selector-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.service-selector-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    display: none;
}

.service-selector-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-selector-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

/* Quantity Controls */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: var(--transition);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.quantity-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 50px;
    min-width: 50px;
    text-align: center;
    padding: 0.5rem 0.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    background: white;
}

/* Area Input */
.area-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-input {
    width: 80px;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.area-unit {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Date & Time Picker */
.datetime-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.date-picker {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.date-picker-month {
    font-weight: 600;
}

.date-picker-nav {
    display: flex;
    gap: 0.5rem;
}

.date-picker-nav button {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-picker-nav button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    text-align: center;
}

.date-picker-day-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem;
}

.date-picker-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.date-picker-day:hover:not(.disabled) {
    background: var(--primary-light);
    color: white;
}

.date-picker-day.selected {
    background: var(--primary-color);
    color: white;
}

.date-picker-day.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
}

.date-picker-day.discount {
    position: relative;
}

.date-picker-day.discount::after {
    content: attr(data-discount);
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.5rem;
    color: var(--success-color);
    font-weight: 700;
}

.time-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem;
    text-align: center;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--primary-light);
}

.time-slot.selected {
    border-color: var(--primary-color);
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
}

.time-slot.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error-color);
}

.error-message {
    font-size: 0.75rem;
    color: var(--error-color);
}

/* Order Summary */
.order-summary {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-summary-header h4 {
    font-size: 1rem;
}

.order-items {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.order-item-name {
    color: var(--text-light);
}

.order-item-price {
    font-weight: 600;
}

.order-discount {
    display: flex;
    justify-content: space-between;
    color: var(--success-color);
    font-size: 0.9375rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total-label {
    font-weight: 600;
    font-size: 1.125rem;
}

.order-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-total-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

/* ===================================
   Benefits Section
=================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.benefit-card h4 {
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ===================================
   Process Section
=================================== */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--border-color);
    transform: translateY(-50%);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.875rem;
    max-width: 200px;
    margin: 0 auto;
}

/* ===================================
   Testimonials Section
=================================== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    margin: 0 0.5rem;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    fill: var(--warning-color);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonials-nav button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ===================================
   FAQ Section
=================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* ===================================
   CTA Section
=================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Contact Section
=================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.social-link:hover svg {
    fill: white;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: var(--transition);
}

/* ===================================
   Footer - Arctic Theme
=================================== */
.site-footer {
    background: linear-gradient(180deg, var(--arctic-dark) 0%, #082f49 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ice-blue), var(--accent-color), var(--primary-light), var(--ice-blue));
    background-size: 300% 100%;
    animation: iceShimmer 8s ease infinite;
}

@keyframes iceShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.snowfall-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.snowfall-footer::before,
.snowfall-footer::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.4), transparent);
    background-size: 200px 200px;
    animation: snowFall 15s linear infinite;
}

.snowfall-footer::after {
    animation-delay: -7s;
    background-size: 150px 150px;
}

@keyframes snowFall {
    0% { transform: translateY(-200px); }
    100% { transform: translateY(100%); }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(125, 211, 252, 0.5));
    transform: scale(1.02);
}
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* ===================================
   Cookie Banner
=================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ===================================
   WhatsApp Float Button
=================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===================================
   WooCommerce Overrides
=================================== */
.woocommerce .quantity .qty {
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
}

.woocommerce button.button,
.woocommerce a.button {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: var(--radius-lg) !important;
    padding: 0.875rem 1.75rem !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background: var(--primary-dark) !important;
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--primary-color) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--primary-color) !important;
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-calculator {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-inner {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        height: 44px;
        max-width: 160px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-location {
        display: none;
    }

    .datetime-picker {
        grid-template-columns: 1fr;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-timeline {
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    /* Footer logo fix */
    .footer-brand .logo {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Booking Calculator Mobile Fixes */
    .service-selector-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }
    
    .service-selector-item > div:last-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .quantity-control {
        gap: 0.5rem;
    }
    
    .quantity-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.75rem;
    }
    
    .quantity-input {
        width: 55px;
        min-width: 55px;
        font-size: 1.125rem;
        padding: 0.625rem 0.25rem;
    }
    
    .area-input-group {
        flex-direction: row;
    }
    
    .area-input {
        width: 70px;
        padding: 0.625rem 0.5rem;
        font-size: 1rem;
    }
    
    .booking-steps {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        position: sticky;
        top: 70px;
        background: white;
        z-index: 10;
        margin: 0 0 1rem 0;
    }
    
    .booking-step {
        flex: 1;
        min-width: 0;
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
    
    .booking-step-number {
        width: 22px;
        height: 22px;
        font-size: 0.6875rem;
        margin-right: 0.35rem;
    }
    
    .booking-step span:last-child {
        display: inline;
    }
    
    .booking-content {
        padding: 1.25rem;
    }
    
    .time-picker {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 0.625rem 0.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-calculator {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .calculator-header h3 {
        font-size: 1.125rem;
    }

    .booking-steps {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        position: sticky;
        top: 70px;
        background: white;
        z-index: 10;
        margin: -1rem -1rem 1rem -1rem;
        padding: 0;
        border-radius: 0;
    }
    
    .booking-step {
        flex: 1;
        min-width: 80px;
        padding: 0.75rem 0.25rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .booking-step-number {
        display: block;
        margin: 0 auto 0.25rem auto;
    }
    
    .booking-step span:last-child {
        display: block;
        font-size: 0.625rem;
    }

    .time-picker {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 0.9375rem;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ===================================
   CSS-only Fade In Animations
=================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero fade-in animation */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* Service cards hover animation */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Benefit cards hover animation */
.benefit-card {
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon {
    transition: transform 0.3s ease;
}

/* Button hover animations - enhanced */
.btn {
    transition: all 0.3s ease;
}

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

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===================================
   Extra Small Devices (320px - 375px)
=================================== */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.375rem !important;
    }
    
    .hero {
        padding: 4.5rem 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-feature {
        font-size: 0.8125rem;
        gap: 0.35rem;
    }
    
    .hero-feature svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-calculator {
        padding: 1rem;
    }
    
    .calculator-header {
        margin-bottom: 1rem;
    }
    
    .calculator-header h3 {
        font-size: 1rem;
    }
    
    .calculator-header p {
        font-size: 0.8125rem;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.875rem;
    }
    
    .service-card,
    .benefit-card {
        padding: 1.25rem;
    }
    
    .service-icon,
    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    .service-icon svg,
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-card h4,
    .benefit-card h4 {
        font-size: 1rem;
    }
    
    .service-card p,
    .benefit-card p {
        font-size: 0.875rem;
    }
    
    .service-price .amount {
        font-size: 1.5rem;
    }
    
    .process-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .process-step h4 {
        font-size: 0.9375rem;
    }
    
    .process-step p {
        font-size: 0.8125rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ===================================
   Reduce Motion for Accessibility
=================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
    
    .services-grid .service-card,
    .benefits-grid .benefit-card {
        opacity: 1;
        transform: none;
    }
    
    .snowfall-container,
    .snowflake {
        display: none !important;
    }
}

/* ===================================
   Arctic Snowfall Animation
=================================== */
.snowfall-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

@keyframes snowfall-drift {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===================================
   Arctic Frost Buttons
=================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--glacier-blue) 0%, var(--primary-color) 50%, var(--arctic-dark) 100%);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3), 0 0 30px rgba(186, 230, 253, 0.2);
    border: 1px solid rgba(186, 230, 253, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--arctic-dark) 0%, var(--glacier-blue) 50%, var(--primary-color) 100%);
    box-shadow: 0 6px 25px rgba(2, 132, 199, 0.4), var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--frost-white) 0%, var(--ice-blue) 100%);
    color: var(--arctic-dark);
    border: 2px solid var(--ice-blue);
    box-shadow: 0 2px 10px rgba(186, 230, 253, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--frost-white) 100%);
    box-shadow: 0 4px 20px rgba(186, 230, 253, 0.5), var(--shadow-glow);
    transform: translateY(-2px);
}

/* ===================================
   Arctic CTA Section
=================================== */
.cta-section {
    background: linear-gradient(135deg, var(--arctic-dark) 0%, var(--glacier-blue) 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(186,230,253,0.2) 0%, transparent 30%),
        radial-gradient(ellipse at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 25%),
        radial-gradient(ellipse at 50% 50%, rgba(186,230,253,0.1) 0%, transparent 40%);
    animation: aurora-shift 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--ice-blue), var(--snow-white), var(--ice-blue), transparent);
    animation: ice-shimmer 3s linear infinite;
}

/* ===================================
   Arctic Calculator Styling
=================================== */
.hero-calculator,
.booking-calculator {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(240,249,255,0.95) 100%);
    border: 1px solid rgba(186,230,253,0.5);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(186,230,253,0.2);
    position: relative;
}

.hero-calculator::before,
.booking-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ice-blue), var(--glacier-blue), var(--primary-color), var(--glacier-blue), var(--ice-blue));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

/* ===================================
   Penguin Mascot Placeholder 
=================================== */
.penguin-mascot {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    animation: penguin-waddle 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.penguin-mascot:hover {
    transform: scale(1.1);
}

@keyframes penguin-waddle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

