/* ============================================
   Colin Simmons Driver Tuition - Main Styles
   Brand Colors from Official Logo
   ============================================ */

/* CSS Variables - Extracted from logo */
:root {
    /* Primary Brand Colors */
    --primary: #0099cc;           /* Cyan blue - "simmons" */
    --primary-dark: #1a5a7a;      /* Dark blue - "colin" */
    --primary-light: #33b5e5;     /* Lighter cyan */

    /* Accent Colors from L-plates */
    --accent-red: #e63946;        /* L-plate red */
    --accent-green: #2ecc71;      /* L-plate green tick */

    /* Arrow/Chevron gradient */
    --arrow-blue: #0088bb;

    /* Supporting Colors */
    --secondary: #f4d03f;         /* Warning/highlight yellow */

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #495057;
    --dark: #2c3e50;
    --black: #1a1a2e;

    /* Functional */
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e63946;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
}

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

.text-center .section-desc {
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

/* Page Header for inner pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.page-header h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

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

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

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-green {
    background: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
}

.btn-green:hover {
    background: #27ae60;
    border-color: #27ae60;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.transparent {
    background: transparent;
    box-shadow: none;
}

.header.transparent.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius-sm);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    z-index: 100;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9375rem;
    color: var(--dark);
}

.dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    margin-left: 15px;
}

.nav-cta:hover {
    background: #c62a36;
    transform: translateY(-2px);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.hero-road::before {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--white) 0px, var(--white) 40px, transparent 40px, transparent 80px);
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent-green);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--accent-green);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.trust-item svg {
    color: var(--accent-green);
}

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

.l-plates-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

.l-plate {
    position: absolute;
    width: 140px;
    height: 160px;
    background: var(--white);
    border: 3px solid var(--dark-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 100px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.l-plate.red {
    color: var(--accent-red);
    transform: rotate(-15deg);
    top: 0;
    left: 0;
    animation: floatLeft 4s ease-in-out infinite;
}

.l-plate.green {
    color: var(--accent-green);
    transform: rotate(10deg);
    bottom: 0;
    right: 0;
    animation: floatRight 4s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-15px); }
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   FEATURES / INTRO SECTION
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 15px;
}

.credential-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.credential-icon svg {
    width: 24px;
    height: 24px;
}

.credential-text {
    display: flex;
    flex-direction: column;
}

.credential-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-dark);
}

.credential-text span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

.about-quote {
    margin-top: 30px;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    position: relative;
}

.about-quote blockquote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 10px;
}

.about-quote cite {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-card.featured .service-features li::before {
    color: var(--accent-green);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 6px 16px;
    background: var(--accent-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    color: var(--white);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* ============================================
   AREAS SECTION
   ============================================ */
.areas {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.areas-map {
    position: relative;
}

.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius);
}

.yorkshire-map {
    width: 100%;
    height: auto;
}

.location-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    fill: var(--dark);
}

.location-label.main {
    font-size: 12px;
    fill: var(--accent-red);
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.area-group h3 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.area-group ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.area-group li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
}

.area-icon {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.area-icon.main {
    background: var(--accent-red);
    width: 12px;
    height: 12px;
}

.area-icon.small {
    background: var(--primary-light);
    width: 8px;
    height: 8px;
}

.areas-note {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--dark-gray);
    border-left: 4px solid var(--primary);
}

/* Area Cards for dedicated page */
.area-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.area-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.area-card.featured {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, rgba(230,57,70,0.05) 0%, rgba(0,153,204,0.05) 100%);
}

.area-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.area-card p {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* ============================================
   VOUCHERS SECTION
   ============================================ */
.vouchers {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.vouchers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vouchers-info .section-label {
    color: var(--accent-green);
}

.vouchers-info .section-title {
    color: var(--white);
}

.vouchers-info p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.voucher-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.voucher-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.voucher-benefits svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Voucher Card */
.vouchers-visual {
    display: flex;
    justify-content: center;
}

.voucher-card {
    width: 100%;
    max-width: 350px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
    transition: var(--transition);
}

.voucher-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.voucher-header {
    padding: 20px 25px;
    background: var(--accent-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voucher-brand {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.voucher-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

.voucher-body {
    padding: 40px 25px;
    text-align: center;
}

.voucher-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.voucher-value .currency {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.voucher-value .amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.voucher-text {
    font-size: 0.9375rem;
    color: var(--gray);
}

.voucher-footer {
    padding: 20px 25px;
    background: var(--off-white);
}

.voucher-decoration {
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--primary) 0px, var(--primary) 10px, transparent 10px, transparent 20px);
    border-radius: 2px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    color: #f4d03f;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 35px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-method:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    color: var(--white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon.facebook {
    background: #1877f2;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-dark);
}

.contact-text span {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-gray);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Gallery placeholder */
.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    color: var(--gray);
    text-align: center;
    padding: 30px;
}

.gallery-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* ============================================
   CAR PAGE
   ============================================ */
.car-showcase {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.car-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.car-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.car-image img {
    width: 100%;
    height: auto;
}

.car-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.car-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--off-white);
    border-radius: var(--radius);
}

.car-feature svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.car-feature span {
    font-size: 0.9375rem;
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.pricing-card.featured .pricing-header {
    background: var(--accent-red);
}

.pricing-header {
    background: var(--primary);
    color: var(--white);
    margin: -40px -30px 30px;
    padding: 25px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-header h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.pricing-header p {
    opacity: 0.8;
    font-size: 0.9375rem;
}

.pricing-price {
    margin-bottom: 25px;
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.footer-brand .footer-title span {
    font-weight: 400;
    color: var(--primary-light);
    font-size: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 5px;
}

.footer-credentials {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 35px;
    }

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

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

    .hero-visual {
        display: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

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

    .vouchers-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .voucher-benefits {
        align-items: center;
    }

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

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

    .nav-item {
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu .nav-link {
        color: var(--dark);
        padding: 15px 0;
        display: block;
    }

    .nav-item.has-dropdown > .nav-link::after {
        float: right;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--off-white);
        border-radius: 0;
        display: none;
    }

    .nav-item.has-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-menu .nav-cta {
        margin: 20px 0 0;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

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

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

    .area-group ul {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-brand .logo {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

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

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

/* Scroll animations - add via JS */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent-red); }
.text-success { color: var(--accent-green); }
.text-muted { color: var(--gray); }

.bg-white { background: var(--white); }
.bg-light { background: var(--off-white); }
.bg-primary { background: var(--primary); }
