/*
Theme Name: Yarra Ranges Airport Transfers
Theme URI: https://yarrarangesairporttransfers.com.au
Description: A modern, SEO-optimized WordPress theme for Yarra Ranges Airport Transfers. Features AI-friendly structured data, responsive design, and optimized performance.
Version: 1.0.0
Author: Yarra Ranges Airport Transfers
Author URI: https://yarrarangesairporttransfers.com.au
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yarra-ranges-transfers
Tags: business, transport, airport-transfer, seo-ready, responsive, modern
*/

/* ===========================
   CSS Variables & Foundations
   =========================== */
:root {
    --primary-color: #1e40af;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Georgia', serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --max-width: 1200px;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

/* ===========================
   Layout & Container
   =========================== */
.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

/* ===========================
   Header Styles
   =========================== */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.site-logo:hover {
    color: var(--secondary-color);
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    transition: var(--transition);
}

.main-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown submenus (e.g. Service Areas) */
.main-menu .sub-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 240px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.main-menu .menu-item-has-children:hover > .sub-menu,
.main-menu .menu-item-has-children:focus-within > .sub-menu {
    display: block;
}

.main-menu .menu-item-has-children > a::after {
    content: '\25BE';
    margin-left: 0.35rem;
    font-size: 0.7em;
}

.main-menu .sub-menu li {
    width: 100%;
}

.main-menu .sub-menu a {
    padding: 0.6rem 1.25rem;
    white-space: nowrap;
    color: var(--text-dark);
}

.main-menu .sub-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100L-50 50Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* ===========================
   Features/Services Section
   =========================== */
.features-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.service-item:hover {
    border-left-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.contact-item a {
    color: white;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* ===========================
   Content Pages
   =========================== */
.content-area {
    padding: 3rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

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

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

    .main-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-menu a {
        padding: 1rem;
    }

    .main-menu .sub-menu {
        display: block;
        position: static;
        box-shadow: none;
        min-width: 0;
        background: var(--bg-light);
        padding: 0;
    }

    .main-menu .menu-item-has-children:hover > .sub-menu,
    .main-menu .menu-item-has-children:focus-within > .sub-menu {
        display: block;
    }

    .main-menu .sub-menu a {
        padding-left: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
    text-align: center;
}

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

/* ===========================
   Accessibility
   =========================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===========================
   Booking Form Styles
   =========================== */
.booking-form-section {
    position: relative;
    z-index: 1;
}

.yarra-booking-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.yarra-booking-form .form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.yarra-booking-form label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yarra-booking-form input[type="text"],
.yarra-booking-form input[type="email"],
.yarra-booking-form input[type="tel"],
.yarra-booking-form input[type="date"],
.yarra-booking-form input[type="time"],
.yarra-booking-form input[type="number"],
.yarra-booking-form textarea,
.yarra-booking-form select {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333;
    font-family: var(--font-primary);
}

.yarra-booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.yarra-booking-form 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='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.yarra-booking-form .submit-button {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    width: 100%;
    max-width: 250px;
}

.yarra-booking-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.yarra-booking-form .submit-button:active {
    transform: translateY(0);
}

/* Contact Form 7 Specific Styles */
.booking-form-wrapper .wpcf7-form {
    display: block;
}

.booking-form-wrapper .wpcf7-form p {
    margin-bottom: 20px;
}

.booking-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.booking-form-wrapper .wpcf7-form input[type="text"],
.booking-form-wrapper .wpcf7-form input[type="email"],
.booking-form-wrapper .wpcf7-form input[type="tel"],
.booking-form-wrapper .wpcf7-form input[type="date"],
.booking-form-wrapper .wpcf7-form input[type="time"],
.booking-form-wrapper .wpcf7-form input[type="number"],
.booking-form-wrapper .wpcf7-form textarea,
.booking-form-wrapper .wpcf7-form select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333;
    font-family: var(--font-primary);
}

.booking-form-wrapper .wpcf7-submit {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-form-wrapper .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
    .yarra-booking-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .yarra-booking-form .form-group {
        min-width: 100%;
    }

    .yarra-booking-form .submit-button {
        max-width: 100%;
    }

    .booking-form-section h2 {
        font-size: 1.8rem !important;
    }
}


/* ===========================
   Enhanced Homepage with Images
   =========================== */

/* Hero Section with Background */
.hero-with-image {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.85) 100%);
    z-index: 1;
}

.hero-with-image .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-with-image .hero-title,
.hero-with-image .hero-subtitle {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Vehicle Fleet Grid with Images */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vehicle-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vehicle-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.05);
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.vehicle-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.vehicle-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section Responsive Grid */
@media (max-width: 968px) {
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-image-wrapper {
        order: -1;
    }
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero-with-image {
        min-height: 400px;
        background-attachment: scroll;
    }

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

    .vehicle-image-wrapper {
        height: 200px;
    }

    .account-booking-cta {
        padding: 1.5rem !important;
    }

    .account-booking-cta h3 {
        font-size: 1.4rem !important;
    }

    .account-booking-cta p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-with-image {
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .vehicle-title {
        font-size: 1.1rem;
    }

    .vehicle-description {
        font-size: 0.9rem;
    }
}

/* Image Loading Animation */
.vehicle-image,
.about-image-wrapper img {
    animation: fadeIn 0.5s ease-in;
}

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

/* Improve image performance */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Account Booking CTA Enhancement */
.account-booking-cta {
    position: relative;
    overflow: hidden;
}

.account-booking-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}


/* Banner Section - Full Width Display */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banner-section img {
    width: 100%;
    height: auto;
    display: block;
}



/* ===========================
   Updated Booking Form Colors
   =========================== */

/* Override booking form background to match site theme */
.booking-form-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
}

.booking-form-section h2 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Update submit button to complement blue theme */
.yarra-booking-form .submit-button {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.yarra-booking-form .submit-button:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.booking-form-wrapper .wpcf7-submit {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.booking-form-wrapper .wpcf7-submit:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Form inputs styling to complement blue background */
.yarra-booking-form input,
.yarra-booking-form textarea,
.yarra-booking-form select {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.yarra-booking-form input:focus,
.yarra-booking-form textarea:focus,
.yarra-booking-form select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    outline: none;
}


/* ===========================
   Site Logo Styling
   =========================== */
.site-logo-link {
    display: block;
    text-decoration: none;
}

.site-logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    display: block;
    transition: opacity 0.3s ease;
}

.site-logo-image:hover {
    opacity: 0.8;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .site-logo-image {
        height: 50px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .site-logo-image {
        height: 40px;
        max-width: 180px;
    }
}

/* Contact Form 7 - Booking Form Custom Styles */

.booking-form-cf7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-cf7 label {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.booking-form-cf7 input[type="text"],
.booking-form-cf7 input[type="email"],
.booking-form-cf7 input[type="tel"],
.booking-form-cf7 input[type="date"],
.booking-form-cf7 input[type="time"],
.booking-form-cf7 input[type="number"],
.booking-form-cf7 select,
.booking-form-cf7 textarea {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.booking-form-cf7 input:focus,
.booking-form-cf7 select:focus,
.booking-form-cf7 textarea:focus {
    outline: none;
    border-color: #f59e0b;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.booking-form-cf7 textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form-cf7 input[type="submit"] {
    grid-column: span 3;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    max-width: 300px;
    margin: 1rem auto 0;
}

.booking-form-cf7 input[type="submit"]:hover {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* CF7 Response Messages */
.wpcf7-response-output {
    margin: 1.5rem 0 0 !important;
    padding: 1rem !important;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.wpcf7-mail-sent-ok {
    background: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #ef4444 !important;
    color: #ffffff !important;
    border: none !important;
}

/* CF7 Validation Errors */
.wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.wpcf7-not-valid {
    border-color: #ef4444 !important;
}

/* CF7 Spinner */
.wpcf7 form.submitting .wpcf7-submit {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-form-cf7 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-form-cf7 input[type="submit"] {
        grid-column: span 1;
        width: 100%;
        max-width: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .booking-form-cf7 {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form-cf7 input[type="submit"] {
        grid-column: span 2;
    }
}
