/**
 * King Baboon Cabs - Main Stylesheet
 * Professional Taxi Service Website
 * Theme: Dark luxury with gold/bronze accents (from brand flyers)
 */

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
    /* Primary - Dark theme (night flyer) */
    --primary-color: #0d1b2a;
    --primary-dark: #1b263b;
    --primary-mid: #415a77;
    /* Gold/Bronze accents */
    --gold: #c9a227;
    --gold-light: #e6c547;
    --gold-dark: #a67c00;
    --bronze: #b8860b;
    /* Neutrals */
    --text-dark: #1f2937;
    --text-light: #9ca3af;
    --text-muted: #6b7280;
    --bg-dark: #0d1b2a;
    --bg-card: #1b263b;
    --bg-light: #e5e7eb;
    --bg-white: #ffffff;
    --border-color: rgba(201, 162, 39, 0.3);
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #0d1b2a;
    border: 2px solid #1ebe5d;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: #0d1b2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-booking {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-booking:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--primary-color);
}

/* ===== Header & Navigation ===== */
.site-header {
    background-color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: var(--bg-dark);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo .logo-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.95;
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.nav-menu li a.btn-booking {
    color: var(--primary-color);
}

.home-header-cta {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    border-top: 2px solid var(--gold);
}

.home-header-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.home-header-cta-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.home-header-cta-icon {
    font-size: 1.2rem;
}

.home-header-cta-number {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.home-header-cta-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
}

.home-header-cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-header {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 0 0 120px;
    text-align: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


.hero-content {
    margin-top: 40px;
}

.hero-content-inner {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(13, 27, 42, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.hero-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-text-fill-color: inherit;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-mid);
    font-weight: 600;
}

.hero-description {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
}

.hero .services-checklist li {
    color: var(--text-dark);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Services Overview ===== */
.services-overview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Services list with gold checkmarks (flyer style) ===== */
.services-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.services-checklist li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-services-list {
    max-width: 400px;
    margin: 0 auto 2rem;
    text-align: left;
}

/* ===== Why Choose Us ===== */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature {
    padding: 20px;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Dog-Friendly Section (from flyer 2) ===== */
.dog-friendly {
    padding: 80px 0;
    background: var(--bg-white) url('../images/flyer-dog.png') center center / cover no-repeat;
    position: relative;
}

.dog-friendly::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
    z-index: 0;
}

.dog-friendly .container {
    position: relative;
    z-index: 1;
}

.dog-friendly h2 {
    color: var(--primary-color);
    text-transform: none;
}

.paw-icon {
    font-size: 2rem;
    display: inline-block;
    margin-right: 8px;
}

.dog-friendly-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

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

.cta-section h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-special-prices {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

/* ===== Page Header ===== */
.page-header {
    background: url('../images/hero-coastal.png') center center / cover no-repeat;
    position: relative;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.9) 0%, rgba(27, 38, 59, 0.9) 100%);
    z-index: 0;
}

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

.page-header h1 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.breadcrumb {
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: var(--gold-light);
    text-decoration: underline;
}

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

/* ===== About Page ===== */
.about-content {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.about-details {
    position: relative;
}

.about-details::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url('../images/raffy.png') left top no-repeat;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.about-main .about-intro,
.about-details .about-section,
.about-content .contact-cta {
    position: relative;
    z-index: 1;
}

.about-content .container {
    position: relative;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-areas,
.commitment-list {
    margin-left: 20px;
    margin-top: 1rem;
}

.service-areas li,
.commitment-list li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.differentiator h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-cta {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

/* ===== Services Page ===== */
.services-detail {
    padding: 60px 0;
}

.service-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.service-hero h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-list {
    margin-bottom: 3rem;
}

.service-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    margin-left: 20px;
    margin-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.service-area-map {
    margin: 3rem 0;
}

.service-area-map h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.booking-cta {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.social-contact {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== Forms ===== */
.contact-form-container,
.booking-container {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-form,
.booking-form {
    margin-top: 1rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: var(--error-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 2rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===== Booking Page ===== */
.booking-section {
    padding: 60px 0;
}

.booking-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.booking-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.booking-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-tips {
    margin-top: 2rem;
}

.booking-tips h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-tips ul {
    list-style-type: disc;
    margin-left: 20px;
}

.booking-tips li {
    margin-bottom: 0.5rem;
}

/* ===== Gallery Page ===== */
.gallery-section {
    padding: 60px 0;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.gallery-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    font-weight: 500;
}

.gallery-note {
    margin-top: 3rem;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    color: white;
    text-align: center;
    width: 100%;
}

/* ===== Alerts ===== */
.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid var(--success-color);
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid var(--error-color);
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 3px solid var(--gold);
}

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

.footer-logo {
    width: 48px;
    height: auto;
    margin-bottom: 0.75rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-area {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.seo-text {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== Main Content ===== */
.main-content {
    min-height: calc(100vh - 400px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-image-cta {
        bottom: 16px;
        padding: 10px 14px;
        gap: 8px;
        border-radius: 16px;
    }
    
    .hero-content-inner {
        padding: 30px 24px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
        border-left: 3px solid var(--gold);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    }
    
    .contact-grid,
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .header-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .home-header-cta-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .home-header-cta-info {
        display: none;
    }
    
    .home-header-cta-buttons {
        justify-content: center;
        width: 100%;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0 0 80px;
    }
    
    .services-overview,
    .why-choose-us,
    .cta-section {
        padding: 60px 0;
    }
}
