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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    min-height: 100vh;
}

/* Custom Properties for Brand Colors */
:root {
    --primary-green: #32CD32;
    --primary-green-dark: #228B22;
    --secondary-gray: #6b7280;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --border-color: #e5e7eb;
}

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

/* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    @media (max-width: 768px) {
        .navbar {
            padding: 1rem 0; /* Increased padding for mobile */
        }
    }
    
    @media (max-width: 480px) {
        .navbar {
            padding: 0.75rem 0; /* Increased padding for very small screens */
        }
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
}

    .nav-logo-img {
        height: 144px;
        width: auto;
        display: block;
        margin-right: 0.5rem;
    }
    
    @media (max-width: 768px) {
        .nav-logo-img {
            height: 100px; /* Much larger height for mobile */
        }
    }
    
    @media (max-width: 480px) {
        .nav-logo-img {
            height: 80px; /* Larger height for very small screens */
        }
    }

.logo-emblem {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
}

.logo-p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    position: relative;
}

.logo-p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #1f2937;
    z-index: -1;
}

.logo-lines {
    position: absolute;
    left: -15px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.logo-lines .line {
    width: 2px;
    height: 12px;
    background: #1f2937;
    margin: 0 1px;
}

.logo-lines .line:nth-child(2) {
    height: 16px;
    margin-top: -2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-premier {
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    color: #1f2937;
    font-family: 'Times New Roman', serif;
}

.logo-valet {
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin-left: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.25rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
}

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

.apply-btn {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: var(--primary-green-dark);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 60%;
    right: 50px;
    transform: translateY(-50%);
    width: 65%;
    max-width: 800px;
    height: 600px;
    background-image: url('images/valet-service-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    z-index: 1;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 140px;
    margin-left: 0;
    padding-left: 20px;
    justify-content: flex-start;
    width: 50%;
    margin-right: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 600px;
    margin-left: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

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

/* Hero image styles removed - now using background image with green border trim */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.hero-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    border: 2px solid var(--primary-green);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.service-card:hover .service-img {
    transform: scale(1.05);
}

/* Show the top of the Restaurant Valet image */
.service-card:first-child .service-img {
    object-position: top;
}

/* Show full Hotel Valet image */
.service-card:nth-child(3) .service-img {
    object-fit: cover !important;
    object-position: top !important;
    height: 200px !important;
    width: 100%;
    background: #fff;
    border-radius: 8px;
}

/* Show full Parking Attendants & Supervision image */
.service-card:nth-child(5) .service-image {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
}

.service-card:nth-child(5) .service-img.attendants-img {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: top !important;
    width: 100%;
    display: block;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--primary-green);
}

.author-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Areas We Serve Section */
.areas {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.area-item {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-item:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.quality-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-2px);
}

.quality-item i {
    font-size: 1.2rem;
    color: #2563eb;
}

.quality-item span {
    font-weight: 600;
    color: #1f2937;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover .team-img {
    transform: scale(1.05);
}

.photo-item:nth-child(1) {
    grid-column: 1 / -1;
}

/* Locations Section */
.locations {
    padding: 80px 0;
}

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

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

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-image i {
    font-size: 4rem;
    color: white;
}

.location-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #1f2937;
}

.location-card p {
    padding: 0 1.5rem 1rem;
    color: #6b7280;
}

.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 1.5rem 1.5rem;
}

.status.available {
    background: #dcfce7;
    color: #166534;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #6b7280;
}

.pricing-card li i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

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

.contact-item p {
    color: #6b7280;
}

.quote-form-item {
    grid-column: span 2;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

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

.quote-submit-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.quote-submit-btn:hover {
    background: var(--primary-green-dark);
}

.contact-box {
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    align-items: stretch;
    margin-top: 0;
    border: none;
    padding: 0;
    background: none;
    max-width: none;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 1.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    min-width: 0;
    flex: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-emblem {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-logo .logo-circle {
    width: 35px;
    height: 35px;
    border: 2px solid #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
}

.footer-logo .logo-p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f9fafb;
    position: relative;
}

.footer-logo .logo-p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #f9fafb;
    z-index: -1;
}

.footer-logo .logo-lines {
    position: absolute;
    left: -12px;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.footer-logo .logo-lines .line {
    width: 1.5px;
    height: 10px;
    background: #f9fafb;
    margin: 0 1px;
}

.footer-logo .logo-lines .line:nth-child(2) {
    height: 13px;
    margin-top: -1.5px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo .logo-premier {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: #f9fafb;
    font-family: 'Times New Roman', serif;
}

.footer-logo .logo-valet {
    font-size: 0.6rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

    .footer-logo-img {
        height: 340px;
        width: auto;
        display: block;
        margin: 0 22rem 0.5rem 0;
    }
    
    @media (max-width: 768px) {
        .footer-logo-img {
            height: 200px; /* Reduced height for mobile */
            margin: 0 auto 0.5rem auto !important; /* Center the logo with !important */
            display: block;
            width: auto; /* Ensure width is auto for proper centering */
            position: relative;
            left: auto !important; /* Override any left positioning */
            right: auto !important; /* Override any right positioning */
        }
    }
    
    @media (max-width: 480px) {
        .footer-logo-img {
            height: 150px; /* Further reduced height for very small screens */
            margin: 0 auto 0.5rem auto !important; /* Center the logo with !important */
            display: block;
            width: auto; /* Ensure width is auto for proper centering */
            position: relative;
            left: auto !important; /* Override any left positioning */
            right: auto !important; /* Override any right positioning */
        }
    }

.footer-owner,
.footer-manager {
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom .footer-logo-img {
    display: block;
    margin: 0 auto 1rem auto;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-circle {
        width: 32px;
        height: 32px;
    }
    
    .logo-p {
        font-size: 1.2rem;
    }
    
    .logo-premier {
        font-size: 1rem;
    }
    
    .logo-valet {
        font-size: 0.6rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px; /* Increased top position to account for larger navbar */
        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;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding-top: 20px;
        min-height: calc(100vh - 20px);
        margin-top: 0px;
    }
    
    .hero::before {
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 400px;
        height: 250px;
        background-position: center;
    }
    

    
    .hero-container {
        text-align: center;
        align-items: center;
        padding-top: 140px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-form-item {
        grid-column: span 1;
    }

    .pricing-card.featured {
        transform: none;
    }

    .services-grid,
    .locations-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .nav-logo {
        gap: 0.4rem;
    }
    
    .logo-circle {
        width: 28px;
        height: 28px;
    }
    
    .logo-p {
        font-size: 1rem;
    }
    
    .logo-premier {
        font-size: 0.9rem;
    }
    
    .logo-valet {
        font-size: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 10px;
        min-height: calc(100vh - 10px);
        margin-top: 0px;
    }
    
    .hero::before {
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        max-width: 300px;
        height: 200px;
        background-position: center;
    }
    

    
    .hero-container {
        padding-top: 120px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
        text-align: center;
        max-width: 100%;
    }
    
    /* Hero image styles removed - now using background image */
    
    .service-image {
        height: 150px;
    }
    
    .about-img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .location-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .location-card,
    .pricing-card {
        animation: fadeInUp 0.6s ease-out;
    }

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