/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c8a97e;
    --text-color: #333;
    --light-color: #f8f8f8;
    --dark-color: #222;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #777;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #b69669;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 10px 25px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-text:hover {
    color: #b69669;
    text-decoration: underline;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
}

/* Hero Carousel Styles */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide .hero-bg {
    position: absolute;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    right: 0;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 50%;
    padding: 2rem;
    text-align: center;
    left: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Luxury Cars Carousel */
.luxury-cars-carousel {
    margin: 50px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.luxury-cars-carousel h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.car-carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.car-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: none;
    background: #fff;
}

.car-carousel-slide.active {
    opacity: 1;
    display: flex;
    flex-direction: column;
}

.luxury-car-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.luxury-car-details {
    padding: 20px;
    text-align: center;
}

.luxury-car-details h4 {
    margin-bottom: 10px;
    font-size: 22px;
}

.car-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.car-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.car-carousel-btn.prev {
    left: 15px;
}

.car-carousel-btn.next {
    right: 15px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    overflow: hidden; /* prevent scrollbars */
}

/* Background image inside hero */
.hero img.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 70%;
    object-fit: cover;  /* fills section */
    object-position: center center;  /* center focus */
    z-index: -2;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


/* Dark overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 70%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    border-radius: 15px;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


/* Intro Section */
.intro {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
}

.destinations .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.destination-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
}

.destination-image.monaco {
    background-image: url('../images/block_monaco.png');
}

.destination-image.nice {
    background-image: url('../images/Block_nice.png');
}

.destination-image.antibes {
    background-image: url('../images/block_antibes.png');
}

.destination-image.cannes {
    background-image: url('../images/block_cannes.png');
}

.destination-image.saintrop {
    background-image: url('../images/block_saintrop.png');
}

.destination-image.paris {
    background-image: url('../images/block_paris.png');
}

.destination-image.courchevel {
    background-image: url('../images/Block_courchevel.png');
}

.destination-image.italy {
    background-image: url('../images/block_italy.png');
}

.destination-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.destination-card p {
    padding: 0 1.5rem 1.5rem;
    color: #777;
}

/* Services Preview Section */
.services-preview {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #777;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #aaa;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Fleet Page Styles */
.page-header {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/fleet-header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.fleet-section {
    padding: 5rem 0;
}

.fleet-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.car-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.car-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.car-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.car-image.e-class {
    background-image: url('../images/e-class.jpg');
}

.car-image.v-class {
    background-image: url('../images/v-class.jpg');
}

.car-image.s-class {
    background-image: url('../images/s-class.jpg');
}

.car-image.supercar {
    background-image: url('../images/supercar.jpg');
}

.car-details {
    padding: 2rem;
}

.car-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.car-details p {
    color: #777;
    margin-bottom: 1.5rem;
}

.car-features {
    margin-top: 1.5rem;
}

.car-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.car-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.vip-service {
    margin-top: 5rem;
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.vip-service h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.vip-service p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Concierge Page Styles */
.concierge-section {
    padding: 5rem 0;
}

.concierge-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
}

.service-image.restaurants {
    background-image: url('../images/block_reservation.png');
}

.service-image.clubs {
    background-image: url('../images/block_nightlife.png');
}

.service-image.events {
    background-image: url('../images/block_events.png');
}

.service-image.yacht {
    background-image: url('../images/block_yacht.png');
}

.service-image.private-jet {
    background-image: url('../images/block_privatejet.png');
}

.service-image.villa-rental {
    background-image: url('../images/block_villa.png');
}

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-details p {
    color: #777;
    margin-bottom: 1.5rem;
}

.testimonials {
    margin-top: 5rem;
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -15px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
}

/* Reservations Page Styles */
.reservations-section {
    padding: 5rem 0;
}

.reservations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.booking-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.booking-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.booking-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.booking-image.transfer {
    background-image: url('../images/transfer.jpg');
}

.booking-image.hourly {
    background-image: url('../images/hourly.jpg');
}

.booking-details {
    padding: 2rem;
}

.booking-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.booking-details p {
    color: #777;
    margin-bottom: 1.5rem;
}

.booking-details ul {
    margin-bottom: 1.5rem;
}

.booking-details ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.booking-details ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.booking-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-label {
    font-size: 0.9rem;
    color: #777;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

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

.contact-details div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-details div i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-details div p {
    margin-bottom: 0;
}

.contact-social {
    margin-top: auto;
}

.contact-social h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 1rem;
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-form, .booking-form-container {
        padding: 1.5rem;
    }
}