/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* General Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

h1, h2 {
    color: #FF6B00;
    font-weight: 600;
    margin-bottom: 15px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 2px solid #FFE0C7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.logo {
    height: 105px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #FF6B00;
}

/* Buttons */
button,
.cta button {
    background-color: #FF6B00;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover,
.cta button:hover {
    background-color: #e85d00;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #666;
}

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.booking-form h1 {
    text-align: center;
    font-size: 28px;
    color: #FF6B00;
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #FF6B00;
    outline: none;
}

.booking-form button {
    background-color: #FF6B00;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.booking-form button:hover {
    background-color: #e55a00;
}

.success-message {
    text-align: center;
    background-color: #eafbe7;
    color: #28a745;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.error-message {
    text-align: center;
    background-color: #fdecea;
    color: #d9534f;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #FFF5EC;
    border-bottom: 2px solid #FFD7B0;
}

.hero p {
    max-width: 720px;
    margin: auto;
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* Hero Section + Highlights */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.hero-box, .highlights-box {
    flex: 1 1 48%;
    min-width: 300px;
    max-width: 540px;
    box-sizing: border-box;
}

.hero-box {
    background-color: #fff4e6;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-box h1 {
    font-size: 30px;
    color: #FF6B00;
    margin-bottom: 12px;
}

.hero-box p {
    color: #444;
    font-size: 16px;
    margin-bottom: 25px;
}

/* Slimmer Hero for Services Page */
.hero-slim {
    background-color: #FFF5EC;
    border-bottom: 2px solid #FFD7B0;
    padding: 40px 0;  /* Reduced from 80px */
    text-align: center;
}

.hero-slim h1 {
    font-size: 28px;
    color: #FF6B00;
    margin-bottom: 10px;
}

.hero-slim p {
    color: #444;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Highlights Side Box */
.highlights-box {
    background-color: #fff;
    border: 1px solid #ffd699;
    border-radius: 10px;
    padding: 20px;
}

.mini-section {
    margin-bottom: 20px;
}

.mini-section h2 {
    font-size: 18px;
    color: #FF6B00;
    margin-bottom: 10px;
}

.highlight-list.small {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-list.small span {
    background-color: #fff3e6;
    color: #e55d00;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
    color: #555;
}

/* Highlights Section (Two Column Layout) */
.highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.highlight-box {
    flex: 1 1 48%;
    background-color: #FFF8F2;
    border: 1px solid #FFD7B0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.highlight-box h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.highlight-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.highlight-list span {
    background-color: #ffffff;
    border: 1px solid #FF6B00;
    color: #FF6B00;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-list span:hover {
    background-color: #FF6B00;
    color: #fff;
}

/* CTA */
.cta {
    margin: 60px auto;
    text-align: center;
}

.cta p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    margin-top: 40px;
    text-align: center;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.service-card {
    background-color: #fff8f0;
    border: 1px solid #ffd699;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    flex: 1 1 300px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.service-card h3 {
    color: #FF6B00;
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Contact Page Styling */
/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    justify-content: center;
}

.contact-info, .map-container {
    flex: 1 1 350px;
    max-width: 600px;
}

.contact-info h2, .map-container h2 {
    color: #FF6B00;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.contact-info a {
    color: #FF6B00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        margin: 30px 0;
    }
}