/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
    --dark-peach: #DC6820;
    --light-peach: #F1874F;
    --dark-green: #053225;
    --light-green: #84A88E;
    --background-cream: #F5D6B9;
    --section-bg: #FDF7E8;
    --white: #fff;
    --black: #000;
    --button-shadow: rgba(0, 0, 0, 0.5);
    --header-shadow: rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-cream);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
}

h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 40px;
}

.booking-container {
    max-width: 950px;
    margin: 170px auto 0px;
}

.main-container {
    max-width: 950px;
    margin: 0 auto;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15), 8px 0 25px rgba(0, 0, 0, 0.15);
}

.main-container-terms {
    max-width: 950px;
    margin: 155px auto 0px;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15), 8px 0 25px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white) !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    max-width: 950px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--header-shadow);
}

.nav-container {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Top row with action buttons */
.nav-top-row {
    background: var(--dark-peach);
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    text-align: center;
}

/* Bottom row with main navigation */
.nav-bottom-row {
    background: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .logo-img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-green);
}

.nav-link.active {
    color: var(--dark-peach) !important;
    font-weight: 600;
}

/* Navigation Buttons */
.nav-button {
    text-decoration: none;
    color: var(--dark-peach);
    font-weight: 600;
    background: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}

.nav-button:hover {
    background: var(--light-peach);
    border-color: var(--light-peach);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 104, 32, 0.3);
}

.nav-button.active {
    background: var(--light-peach);
    border-color: var(--light-peach);
    color: var(--white);
}

/* Top row button overrides */
.nav-top-row .nav-button {
    box-shadow: none;
}

.nav-top-row .nav-button:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark-peach);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Call Us styles */
.nav-top-row .call-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0.8rem;
    color: var(--white);
}

.nav-top-row .call-us-text {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--white);
    opacity: 0.9;
    line-height: .7rem;
}

.nav-top-row .call-us-number {
    font-weight: 600;
    color: var(--white);
}

.nav-top-row .call-us:hover .call-us-text,
.nav-top-row .call-us:hover .call-us-number {
    color: var(--background-cream);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 38%)), url(../images/bg.jpg);    
    background-size: cover;
    background-position: top;
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 120px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--dark-peach);
    text-align: center;
    width: 100%;
}

.hero h1 {
    color: var(--dark-peach);
    position: relative;
    font-size: 4.5rem;
    font-weight: 700;
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    text-align: center;
    width: 100%;
}

.hero-line-1 {
    display: block;
    margin-bottom: 0.2rem;
}

.hero-line-2 {
    display: block;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: var(--dark-peach);
    color: var(--dark-peach) !important;
    padding: 1.5rem 3.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-dark {
    background: var(--dark-peach);
    color: var(--white) !important;
}

.cta-button .call-text {
    color: var(--white) !important;
    font-size: 1.3em;
    font-weight: 700;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.about, .services, .whats-included, .why-choose-us {
    padding: 4rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

.about h2, .services h2, .whats-included h2, .why-choose-us h2 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.about-content {
    margin-top: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--black);
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--header-shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--button-shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--light-peach);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.step-card p {
    color: var(--black);
    line-height: 1.5;
    font-size: 0.95rem;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-peach);
    flex-shrink: 0;
}

/* Peach Bullet List */
.peach-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.peach-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;

}

.peach-bullet-list li::before {
    content: "●";
    color: var(--dark-peach) !important;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--header-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--button-shadow);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--black);
    line-height: 1.6;
}

.service-subtitle {
    font-weight: 600;
    color: var(--light-peach) !important;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-subtitle em {
    font-weight: 400;
    color: var(--light-green) !important;
    font-style: italic;
}

/* Reasons List */
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--header-shadow);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--button-shadow);
}

.reason-number {
    width: 60px;
    height: 60px;
    background: var(--light-peach);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.reason-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    line-height: 1.4;
}

.reason-content p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature {
    text-align: center;
    padding: 0.5rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature p {
    color: var(--black);
}

/* ==========================================================================
   Call for Quote Section
   ========================================================================== */
.call-for-quote {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-peach) 0%, var(--light-peach) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.call-for-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-content h2 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.phone-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.call-for-quote .cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--dark-peach) !important;
    padding: 1.5rem 3.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 0 0;
    transition: all 0.3s ease;
    border: 3px solid var(--white);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-for-quote .cta-button:hover {
    background: transparent;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-section {
    padding: 2rem 0;
    background: var(--section-bg);
    border-radius: 0;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.testimonial-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--background-cream);
    position: relative;
    max-width: 600px;
    width: 100%;
    transition: all 0.3s ease;
    text-align: left;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--light-peach);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content p {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-green);
    margin: 0;
    position: relative;
    padding: 1.5rem 1rem 0 1rem;
    text-align: center;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: var(--light-peach);
    position: absolute;
    font-family: "Georgia", serif;
    opacity: 0.7;
}

.testimonial-content p::before {
    top: -1rem;
    left: -1rem;
}

.testimonial-content p::after {
    bottom: -2rem;
    right: -1rem;
}

.testimonial-author {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--background-cream);
}

.testimonial-author h4 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0 0 0.5rem 0;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--light-green);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact.footer {
    padding: 4rem 0 2rem;
    background: var(--white);
    color: var(--black);
    border-radius: 0;
    border-top: 1px solid #e9ecef;
}

.contact h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: var(--section-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px var(--button-shadow);
}

.submit-btn {
    width: 100%;
    background: var(--dark-peach);
    color: var(--white)!important;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--light-peach);
    transform: translateY(-2px);
}

.contact-info {
    padding: 2rem;
    width: 100%;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--dark-peach);
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid #e9ecef;
    color: var(--black);
}

/* ==========================================================================
   Page-Specific Styles
   ========================================================================== */
/* Booking Page */
.booking-hero {
    background: linear-gradient(135deg, var(--dark-peach) 0%, var(--light-peach) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.booking-hero .hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.booking-hero .hero-content p {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.booking-content {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-content iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hiring Page */
.hiring-content {
    padding: 0;
    background: var(--section-bg);
    text-align: center;
    margin-top: 170px;
}

.hiring-content .container {
    padding: 0;
}

.hiring-content h1 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.hiring-content .hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-green);
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hiring-content h2 {
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-green);
    margin-top: 2rem;
}

.hiring-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.hiring-content .contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px var(--header-shadow);
}

.hiring-content .contact-info p {
    margin-bottom: 1rem;
}

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

.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        justify-content: space-between;
        gap: 0;
    }
    
    .nav-top-row,
    .nav-bottom-row {
        padding: 0.5rem 1rem;
    }
    
    .nav-top-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        align-items: center;
        justify-content: center;
        z-index: 999;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav-button {
        margin: 0.5rem 0;
        text-align: center;
        display: inline-block;
        padding: 0.4rem 0.7rem;
    }

    .navbar {
        padding: 0;
    }

    /* Content */
    .hero h1 {
        font-size: 2.5rem;
        left: 0;
        text-align: center;
        width: 100%;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .cta-button {
        display: block;
        margin: 0 auto;
        text-align: center;
        position: static;
        float: none;
        left: auto;
        top: auto;
    }

    .call-for-quote {
        padding: 4rem 0;
    }
    
    .call-for-quote h2 {
        font-size: 2rem;
    }
    
    .phone-number-large {
        font-size: 2.2rem;
    }
    
    .call-for-quote .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

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

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

    .reasons-list {
        gap: 1.5rem;
    }

    .reason-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .reason-number {
        margin-top: 0;
        align-self: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-arrow i {
        transform: rotate(90deg);
    }

    .step-card {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 1rem;
    }

    .testimonial-item {
        padding: 2rem;
        margin: 0 1rem;
    }

    .testimonial-content p {
        font-size: 1.1rem;
        padding: 1rem 0 0 0;
    }

    .testimonial-content p::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -0.5rem;
    }

    .testimonial-content p::after {
        font-size: 3rem;
        bottom: -1.5rem;
        right: -0.5rem;
    }

    /* Page-specific mobile styles */
    .booking-hero {
        min-height: 50vh;
    }
    
    .booking-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .booking-hero .hero-content p {
        font-size: 1rem;
    }
    
    .booking-content {
        padding: 0 0.5rem;
    }
    
    .hiring-content {
        padding: 1.5rem 0;
        margin-top: 140px;
    }
    
    .hiring-content h1 {
        font-size: 2.5rem;
    }
    
    .hiring-content .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hiring-content h2 {
        font-size: 2rem;
    }
    
    .hiring-content .contact-info {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {

    .hero {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .services h2,
    .why-choose-us h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .call-for-quote {
        padding: 3rem 0;
    }
    
    .call-for-quote h2 {
        font-size: 1.5rem;
    }
    
    .call-for-quote .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        max-width: 100%;
    }

    .testimonial-item {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
    }

    /* Additional mobile navigation adjustments */
    .nav-menu {
        top: 145px;
    }

    .nav-top-row,
    .nav-bottom-row {
        padding: 0.3rem 0.5rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-button {
        font-size: 0.9rem;
    }

    /* Page-specific small mobile styles */
    .booking-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .booking-hero .hero-content p {
        font-size: 0.9rem;
    }
}
 