/*
Theme Name: TerraStructa Pro
Theme URI: https://terrastructa.nl
Author: TerraStructa B.V.
Author URI: https://terrastructa.nl
Description: Professioneel WordPress thema voor TerraStructa B.V. - Verhuur van bouwmachines en materieel met geavanceerd boekingssysteem, offerte generator en email template editor.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: terrastructa
Tags: construction, rental, booking, dutch, responsive, custom-colors
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
*/

/* ===== CSS VARIABLES ===== */
:root {
    /* Premium Orange Palette */
    --ts-primary: #E85D04;
    --ts-primary-dark: #D45103;
    --ts-primary-light: #F48C06;
    --ts-primary-lighter: #FAA307;
    --ts-accent: #FFBA08;
    
    /* Neutral Colors */
    --ts-dark: #1A1A1A;
    --ts-dark-soft: #2D2D2D;
    --ts-gray-900: #212529;
    --ts-gray-800: #343A40;
    --ts-gray-700: #495057;
    --ts-gray-600: #6C757D;
    --ts-gray-500: #ADB5BD;
    --ts-gray-400: #CED4DA;
    --ts-gray-300: #DEE2E6;
    --ts-gray-200: #E9ECEF;
    --ts-gray-100: #F8F9FA;
    --ts-white: #FFFFFF;
    
    /* Functional Colors */
    --ts-success: #2D6A4F;
    --ts-warning: #FFBA08;
    --ts-error: #D62828;
    --ts-info: #0077B6;
    
    /* Typography */
    --ts-font-primary: 'Montserrat', sans-serif;
    --ts-font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --ts-space-xs: 0.25rem;
    --ts-space-sm: 0.5rem;
    --ts-space-md: 1rem;
    --ts-space-lg: 1.5rem;
    --ts-space-xl: 2rem;
    --ts-space-2xl: 3rem;
    --ts-space-3xl: 4rem;
    
    /* Border Radius */
    --ts-radius-sm: 4px;
    --ts-radius-md: 8px;
    --ts-radius-lg: 12px;
    --ts-radius-xl: 16px;
    --ts-radius-full: 9999px;
    
    /* Shadows */
    --ts-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --ts-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --ts-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --ts-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --ts-shadow-orange: 0 4px 14px rgba(232, 93, 4, 0.3);
    
    /* Transitions */
    --ts-transition-fast: 150ms ease;
    --ts-transition-normal: 250ms ease;
    --ts-transition-slow: 350ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ts-font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ts-gray-800);
    background-color: var(--ts-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ts-font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ts-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; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

a {
    color: var(--ts-primary);
    text-decoration: none;
    transition: color var(--ts-transition-fast);
}

a:hover {
    color: var(--ts-primary-dark);
}

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

/* ===== UTILITY CLASSES ===== */
.ts-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--ts-space-lg);
}

.ts-section {
    padding: var(--ts-space-3xl) 0;
}

.ts-section--gray {
    background-color: var(--ts-gray-100);
}

.ts-section--dark {
    background-color: var(--ts-dark);
    color: var(--ts-white);
}

.ts-section--orange {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-light) 100%);
    color: var(--ts-white);
}

.ts-text-center { text-align: center; }
.ts-text-left { text-align: left; }
.ts-text-right { text-align: right; }

.ts-mb-0 { margin-bottom: 0; }
.ts-mb-1 { margin-bottom: var(--ts-space-sm); }
.ts-mb-2 { margin-bottom: var(--ts-space-md); }
.ts-mb-3 { margin-bottom: var(--ts-space-lg); }
.ts-mb-4 { margin-bottom: var(--ts-space-xl); }
.ts-mb-5 { margin-bottom: var(--ts-space-2xl); }

/* ===== BUTTONS ===== */
.ts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ts-space-sm);
    padding: var(--ts-space-md) var(--ts-space-xl);
    font-family: var(--ts-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--ts-radius-md);
    cursor: pointer;
    transition: all var(--ts-transition-normal);
    text-decoration: none;
}

.ts-btn--primary {
    background-color: var(--ts-primary);
    color: var(--ts-white);
    border-color: var(--ts-primary);
}

.ts-btn--primary:hover {
    background-color: var(--ts-primary-dark);
    border-color: var(--ts-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--ts-shadow-orange);
}

.ts-btn--secondary {
    background-color: transparent;
    color: var(--ts-primary);
    border-color: var(--ts-primary);
}

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

.ts-btn--white {
    background-color: var(--ts-white);
    color: var(--ts-primary);
    border-color: var(--ts-white);
}

.ts-btn--white:hover {
    background-color: var(--ts-gray-100);
    transform: translateY(-2px);
}

.ts-btn--dark {
    background-color: var(--ts-dark);
    color: var(--ts-white);
    border-color: var(--ts-dark);
}

.ts-btn--dark:hover {
    background-color: var(--ts-gray-900);
}

.ts-btn--lg {
    padding: var(--ts-space-lg) var(--ts-space-2xl);
    font-size: 1rem;
}

.ts-btn--sm {
    padding: var(--ts-space-sm) var(--ts-space-md);
    font-size: 0.85rem;
}

.ts-btn--icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--ts-radius-full);
}

/* ===== HEADER ===== */
.ts-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--ts-white);
    box-shadow: var(--ts-shadow-md);
    transition: all var(--ts-transition-normal);
}

.ts-header.scrolled {
    box-shadow: var(--ts-shadow-lg);
}

.ts-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.ts-header__logo img {
    height: 60px;
    width: auto;
}

.ts-header__nav {
    display: flex;
    align-items: center;
    gap: var(--ts-space-xl);
}

.ts-header__menu {
    display: flex;
    list-style: none;
    gap: var(--ts-space-lg);
}

.ts-header__menu a {
    font-family: var(--ts-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ts-gray-800);
    padding: var(--ts-space-sm) 0;
    position: relative;
}

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

.ts-header__menu a:hover::after,
.ts-header__menu a.active::after {
    width: 100%;
}

.ts-header__menu a:hover,
.ts-header__menu a.active {
    color: var(--ts-primary);
}

.ts-header__actions {
    display: flex;
    align-items: center;
    gap: var(--ts-space-md);
}

.ts-header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.ts-header__mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--ts-dark);
    transition: all var(--ts-transition-fast);
}

/* ===== HERO ===== */
.ts-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.ts-hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.ts-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ts-hero__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.ts-hero__decoration {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(180deg, var(--ts-primary) 0%, var(--ts-primary-light) 50%, var(--ts-accent) 100%);
    opacity: 0.9;
}

.ts-hero__decoration--left {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
}

.ts-hero__decoration--right {
    right: 0;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.ts-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.ts-hero__subtitle {
    display: inline-block;
    font-family: var(--ts-font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ts-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--ts-space-md);
}

.ts-hero__title {
    color: var(--ts-white);
    margin-bottom: var(--ts-space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ts-hero__title span {
    color: var(--ts-primary-light);
}

.ts-hero__description {
    font-size: 1.25rem;
    color: var(--ts-gray-300);
    margin-bottom: var(--ts-space-xl);
    max-width: 600px;
}

.ts-hero__actions {
    display: flex;
    gap: var(--ts-space-md);
    flex-wrap: wrap;
}

/* ===== USP BAR ===== */
.ts-usp-bar {
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    padding: var(--ts-space-xl) 0;
    position: relative;
    overflow: hidden;
}

.ts-usp-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 20px 20px;
}

.ts-usp-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ts-space-lg);
    position: relative;
    z-index: 1;
}

.ts-usp-item {
    display: flex;
    align-items: center;
    gap: var(--ts-space-md);
    padding: var(--ts-space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ts-radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--ts-transition-normal);
}

.ts-usp-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.ts-usp-item__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ts-white);
    border-radius: var(--ts-radius-md);
    flex-shrink: 0;
}

.ts-usp-item__icon svg {
    width: 32px;
    height: 32px;
    color: var(--ts-primary);
}

.ts-usp-item__content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ts-white);
    margin-bottom: var(--ts-space-xs);
    text-transform: uppercase;
}

.ts-usp-item__content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== PRODUCTS GRID ===== */
.ts-products {
    background-color: var(--ts-gray-100);
}

.ts-products__header {
    text-align: center;
    margin-bottom: var(--ts-space-2xl);
}

.ts-products__header h2 {
    margin-bottom: var(--ts-space-md);
}

.ts-products__header p {
    font-size: 1.125rem;
    color: var(--ts-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.ts-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--ts-space-xl);
}

.ts-product-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
    box-shadow: var(--ts-shadow-md);
    transition: all var(--ts-transition-normal);
    position: relative;
}

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

.ts-product-card__badge {
    position: absolute;
    top: var(--ts-space-md);
    left: var(--ts-space-md);
    padding: var(--ts-space-xs) var(--ts-space-md);
    background: var(--ts-primary);
    color: var(--ts-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--ts-radius-full);
    z-index: 10;
}

.ts-product-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ts-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ts-transition-slow);
}

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

.ts-product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--ts-transition-normal);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--ts-space-lg);
}

.ts-product-card:hover .ts-product-card__overlay {
    opacity: 1;
}

.ts-product-card__content {
    padding: var(--ts-space-lg);
}

.ts-product-card__category {
    font-size: 0.8rem;
    color: var(--ts-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--ts-space-xs);
}

.ts-product-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--ts-space-sm);
}

.ts-product-card__description {
    font-size: 0.9rem;
    color: var(--ts-gray-600);
    margin-bottom: var(--ts-space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ts-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--ts-space-md);
    border-top: 1px solid var(--ts-gray-200);
}

.ts-product-card__price {
    font-family: var(--ts-font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ts-primary);
}

.ts-product-card__price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ts-gray-600);
}

/* ===== FEATURED SECTION ===== */
.ts-featured {
    position: relative;
    overflow: hidden;
}

.ts-featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ts-space-2xl);
    align-items: center;
}

.ts-featured__image {
    position: relative;
    border-radius: var(--ts-radius-xl);
    overflow: hidden;
    box-shadow: var(--ts-shadow-xl);
}

.ts-featured__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--ts-primary);
    border-radius: var(--ts-radius-lg);
    z-index: -1;
}

.ts-featured__image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--ts-accent);
    border-radius: var(--ts-radius-lg);
    z-index: -1;
}

.ts-featured__content h2 {
    margin-bottom: var(--ts-space-lg);
}

.ts-featured__content p {
    font-size: 1.1rem;
    color: var(--ts-gray-600);
    margin-bottom: var(--ts-space-xl);
}

.ts-featured__list {
    list-style: none;
    margin-bottom: var(--ts-space-xl);
}

.ts-featured__list li {
    display: flex;
    align-items: center;
    gap: var(--ts-space-md);
    padding: var(--ts-space-sm) 0;
}

.ts-featured__list li svg {
    width: 24px;
    height: 24px;
    color: var(--ts-primary);
    flex-shrink: 0;
}

/* ===== BOOKING CALENDAR ===== */
.ts-booking {
    background: linear-gradient(135deg, var(--ts-gray-100) 0%, var(--ts-white) 100%);
}

.ts-booking__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--ts-space-2xl);
    background: var(--ts-white);
    border-radius: var(--ts-radius-xl);
    box-shadow: var(--ts-shadow-xl);
    overflow: hidden;
}

.ts-booking__info {
    padding: var(--ts-space-2xl);
    background: linear-gradient(135deg, var(--ts-primary) 0%, var(--ts-primary-dark) 100%);
    color: var(--ts-white);
}

.ts-booking__info h2 {
    color: var(--ts-white);
    margin-bottom: var(--ts-space-lg);
}

.ts-booking__info p {
    opacity: 0.9;
    margin-bottom: var(--ts-space-xl);
}

.ts-booking__steps {
    list-style: none;
}

.ts-booking__steps li {
    display: flex;
    align-items: flex-start;
    gap: var(--ts-space-md);
    padding: var(--ts-space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ts-booking__steps li:last-child {
    border-bottom: none;
}

.ts-booking__step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ts-white);
    color: var(--ts-primary);
    font-weight: 700;
    border-radius: var(--ts-radius-full);
    flex-shrink: 0;
}

.ts-booking__form {
    padding: var(--ts-space-2xl);
}

.ts-form-group {
    margin-bottom: var(--ts-space-lg);
}

.ts-form-group label {
    display: block;
    font-family: var(--ts-font-primary);
    font-weight: 600;
    margin-bottom: var(--ts-space-sm);
    color: var(--ts-dark);
}

.ts-form-group input,
.ts-form-group select,
.ts-form-group textarea {
    width: 100%;
    padding: var(--ts-space-md);
    font-family: var(--ts-font-secondary);
    font-size: 1rem;
    border: 2px solid var(--ts-gray-300);
    border-radius: var(--ts-radius-md);
    transition: all var(--ts-transition-fast);
    background: var(--ts-white);
}

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

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

/* ===== CALENDAR WIDGET ===== */
.ts-calendar {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    border: 2px solid var(--ts-gray-200);
    overflow: hidden;
}

.ts-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ts-space-lg);
    background: var(--ts-gray-100);
}

.ts-calendar__header h4 {
    font-size: 1.1rem;
    margin: 0;
}

.ts-calendar__nav {
    display: flex;
    gap: var(--ts-space-sm);
}

.ts-calendar__nav button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ts-white);
    border: 1px solid var(--ts-gray-300);
    border-radius: var(--ts-radius-md);
    cursor: pointer;
    transition: all var(--ts-transition-fast);
}

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

.ts-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--ts-gray-50);
    border-bottom: 1px solid var(--ts-gray-200);
}

.ts-calendar__weekdays span {
    padding: var(--ts-space-sm);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ts-gray-600);
    text-transform: uppercase;
}

.ts-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: var(--ts-space-sm);
    gap: 4px;
}

.ts-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: var(--ts-radius-md);
    cursor: pointer;
    transition: all var(--ts-transition-fast);
    border: none;
    background: transparent;
}

.ts-calendar__day:hover:not(.ts-calendar__day--disabled):not(.ts-calendar__day--unavailable) {
    background: var(--ts-gray-100);
}

.ts-calendar__day--today {
    font-weight: 700;
    color: var(--ts-primary);
}

.ts-calendar__day--selected {
    background: var(--ts-primary) !important;
    color: var(--ts-white) !important;
}

.ts-calendar__day--in-range {
    background: rgba(232, 93, 4, 0.1);
}

.ts-calendar__day--unavailable {
    background: var(--ts-gray-200);
    color: var(--ts-gray-500);
    cursor: not-allowed;
    text-decoration: line-through;
}

.ts-calendar__day--disabled {
    color: var(--ts-gray-400);
    cursor: not-allowed;
}

.ts-calendar__day--other-month {
    color: var(--ts-gray-400);
}

.ts-calendar__legend {
    display: flex;
    gap: var(--ts-space-lg);
    padding: var(--ts-space-md) var(--ts-space-lg);
    border-top: 1px solid var(--ts-gray-200);
    background: var(--ts-gray-50);
}

.ts-calendar__legend-item {
    display: flex;
    align-items: center;
    gap: var(--ts-space-sm);
    font-size: 0.8rem;
    color: var(--ts-gray-600);
}

.ts-calendar__legend-item span {
    width: 16px;
    height: 16px;
    border-radius: var(--ts-radius-sm);
}

.ts-calendar__legend-item--available span {
    background: var(--ts-white);
    border: 1px solid var(--ts-gray-300);
}

.ts-calendar__legend-item--selected span {
    background: var(--ts-primary);
}

.ts-calendar__legend-item--unavailable span {
    background: var(--ts-gray-200);
}

/* ===== QUOTE SUMMARY ===== */
.ts-quote-summary {
    background: var(--ts-gray-100);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-xl);
    margin-top: var(--ts-space-xl);
}

.ts-quote-summary__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--ts-space-lg);
    padding-bottom: var(--ts-space-md);
    border-bottom: 2px solid var(--ts-gray-300);
}

.ts-quote-summary__header h4 {
    margin: 0;
}

.ts-quote-summary__row {
    display: flex;
    justify-content: space-between;
    padding: var(--ts-space-sm) 0;
}

.ts-quote-summary__row--total {
    margin-top: var(--ts-space-md);
    padding-top: var(--ts-space-md);
    border-top: 2px solid var(--ts-gray-300);
    font-weight: 700;
    font-size: 1.1rem;
}

.ts-quote-summary__row--total .ts-quote-summary__value {
    color: var(--ts-primary);
    font-size: 1.25rem;
}

/* ===== FOOTER ===== */
.ts-footer {
    background: var(--ts-dark);
    color: var(--ts-gray-400);
}

.ts-footer__main {
    padding: var(--ts-space-3xl) 0;
}

.ts-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--ts-space-2xl);
}

.ts-footer__brand {
    max-width: 350px;
}

.ts-footer__brand img {
    height: 50px;
    margin-bottom: var(--ts-space-lg);
    filter: brightness(0) invert(1);
}

.ts-footer__brand p {
    line-height: 1.7;
    margin-bottom: var(--ts-space-lg);
}

.ts-footer__social {
    display: flex;
    gap: var(--ts-space-sm);
}

.ts-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ts-dark-soft);
    border-radius: var(--ts-radius-md);
    color: var(--ts-gray-400);
    transition: all var(--ts-transition-fast);
}

.ts-footer__social a:hover {
    background: var(--ts-primary);
    color: var(--ts-white);
}

.ts-footer__column h4 {
    font-size: 1rem;
    color: var(--ts-white);
    margin-bottom: var(--ts-space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ts-footer__column ul {
    list-style: none;
}

.ts-footer__column ul li {
    margin-bottom: var(--ts-space-sm);
}

.ts-footer__column ul a {
    color: var(--ts-gray-400);
    transition: all var(--ts-transition-fast);
}

.ts-footer__column ul a:hover {
    color: var(--ts-primary-light);
    padding-left: var(--ts-space-sm);
}

.ts-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--ts-space-md);
    margin-bottom: var(--ts-space-md) !important;
}

.ts-footer__contact svg {
    width: 20px;
    height: 20px;
    color: var(--ts-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ts-footer__newsletter {
    background: var(--ts-dark-soft);
    padding: var(--ts-space-xl);
    border-radius: var(--ts-radius-lg);
}

.ts-footer__newsletter h4 {
    margin-bottom: var(--ts-space-md);
}

.ts-footer__newsletter p {
    font-size: 0.9rem;
    margin-bottom: var(--ts-space-md);
}

.ts-footer__newsletter-form {
    display: flex;
    gap: var(--ts-space-sm);
}

.ts-footer__newsletter-form input {
    flex: 1;
    padding: var(--ts-space-md);
    border: none;
    border-radius: var(--ts-radius-md);
    background: var(--ts-dark);
    color: var(--ts-white);
}

.ts-footer__newsletter-form input::placeholder {
    color: var(--ts-gray-600);
}

.ts-footer__bottom {
    padding: var(--ts-space-lg) 0;
    border-top: 1px solid var(--ts-dark-soft);
}

.ts-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ts-footer__bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .ts-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ts-featured__grid {
        gap: var(--ts-space-xl);
    }
}

@media (max-width: 992px) {
    .ts-header__menu {
        display: none;
    }
    
    .ts-header__mobile-toggle {
        display: flex;
    }
    
    .ts-usp-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ts-featured__grid {
        grid-template-columns: 1fr;
    }
    
    .ts-booking__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ts-hero__decoration {
        width: 60px;
    }
    
    .ts-usp-bar__grid {
        grid-template-columns: 1fr;
    }
    
    .ts-form-row {
        grid-template-columns: 1fr;
    }
    
    .ts-footer__grid {
        grid-template-columns: 1fr;
    }
    
    .ts-footer__bottom-inner {
        flex-direction: column;
        gap: var(--ts-space-md);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ts-hero__actions {
        flex-direction: column;
    }
    
    .ts-hero__actions .ts-btn {
        width: 100%;
    }
    
    .ts-products__grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.ts-animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.ts-animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.ts-animate-slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

/* Stagger animations */
.ts-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.ts-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.ts-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.ts-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.ts-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.ts-stagger > *:nth-child(6) { animation-delay: 0.6s; }
