/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1e293b;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
    font-size: 1.125rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    width: 100%;
}

.global-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    width: 100%;
}

.global-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    position: relative;
}

.header-left {
    flex: 0 0 auto;
    margin-right: 2rem; /* Space between logo and navigation */
    display: flex;
    justify-content: flex-start;
}

.header-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}


/* Dropdown styles for global header */
.global-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1100;
}

.global-nav .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.global-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.global-nav .dropdown-menu li {
    border-bottom: 1px solid #f1f5f9;
}

.global-nav .dropdown-menu li:last-child {
    border-bottom: none;
}

.global-nav .dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: inline-block;
    color: #1e293b;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: white;
    color: #3b82f6;
    border: 1px solid #3b82f6;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    margin: 0.25rem 0.5rem;
    width: calc(100% - 1rem);
    text-align: center;
}

.global-nav .dropdown-menu a:hover {
    background: #f8fafc;
    color: #2563eb;
    transform: translateY(-1px);
}

/* Hamburger Menu Button Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 4px;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: none;
}

.mobile-menu-toggle.active span {
    background-color: #333;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e5e7eb;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.mobile-menu-header .logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #333;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
    background-color: #e9ecef;
}

.mobile-menu-close span {
    font-weight: bold;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    background-color: #ffffff;
}

.mobile-nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 1.25rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    margin: 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-align: center;
}

.mobile-nav-menu a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-left-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.mobile-nav-menu a:active {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
}

/* Mobile dropdown styles for mobile menu */
.mobile-dropdown {
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-dropdown:last-child {
    border-bottom: none;
}

.mobile-dropdown-toggle {
    width: calc(100% - 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0.5rem 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-dropdown-toggle:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.mobile-dropdown-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #666;
}

.mobile-dropdown-toggle[aria-expanded="true"] .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #3b82f6;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    border-left: 4px solid #e5e7eb;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
    padding: 1rem 0;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid #e5e7eb;
    margin: 0 1rem;
}

.mobile-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    border-left: none;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    background-color: #e3f2fd;
    color: #1d4ed8;
    border-left: none;
    transform: translateX(4px);
}

.mobile-dropdown-menu a:active {
    background-color: #dbeafe;
    color: #1e40af;
}


/* Mobile responsive styles for global header */
@media (max-width: 768px) {
    .global-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 1rem;
    }

    .header-left, .header-center, .header-right {
        flex: none;
        width: 100%;
    }

    .header-right {
        justify-content: flex-end;
        margin-top: 0;
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .action-buttons {
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 0.5rem;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        padding: 0.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        backdrop-filter: blur(5px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-menu.mobile-active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        margin: 0.125rem 0;
        border-radius: 6px;
        font-size: 0.95rem;
        background: transparent;
        color: #333;
        border: none;
        transition: all 0.2s ease;
    }

    .nav-menu a:hover {
        background-color: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
        overflow: visible;
        transition: none;
        margin: 0.25rem 0;
        padding: 0.25rem 0;
        border-radius: 6px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        display: block;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.9rem;
        background: white;
        color: #333;
        box-shadow: none;
        margin: 0;
        width: 100%;
        border-radius: 0;
        border: none;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    /* Mobile sticky CTA improvements */
    .sticky-cta-bar {
        padding: 0.75rem 1rem;
    }
    
  .sticky-cta-bar .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-width: 45%;
  }
}

/* Serving Major Areas Across California */
#serving-areas {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

#serving-areas h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#serving-areas h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.area-item {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.area-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.area-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.area-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Trusted by Customers Nationwide */
#trusted-nationwide {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1200px;
}

#trusted-nationwide h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#trusted-nationwide h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffc107;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.trust-stat {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.trust-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.trust-logos {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-logos p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Tablet responsiveness for new sections */
@media (min-width: 769px) and (max-width: 1024px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    #serving-areas,
    #trusted-nationwide {
        padding: 3rem 1.5rem;
    }
    
    #serving-areas h2,
    #trusted-nationwide h2 {
        font-size: 2rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .trust-stat {
        padding: 1.5rem 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.95rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .area-item {
        padding: 1.5rem 1rem;
    }
    
    .area-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    #serving-areas,
    #trusted-nationwide {
        padding: 2rem 1rem;
    }
    
    #serving-areas h2,
    #trusted-nationwide h2 {
        font-size: 1.75rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .trust-stat {
        padding: 1rem 0.75rem;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
    
    .trust-logos p {
        font-size: 0.95rem;
    }
    
    .areas-grid {
        gap: 1rem;
    }
    
    .area-item {
        padding: 1.25rem 0.75rem;
    }
    
    .area-item i {
        font-size: 2rem;
    }
    
    .area-item h3 {
        font-size: 1.1rem;
    }
    
    .area-item p {
        font-size: 0.9rem;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.02);
}

.logo img {
    display: block;
    height: 68px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: brightness(1.05);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    height: 38px;
    padding: 0 16px;
    min-width: 90px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    white-space: nowrap;

    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);

    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.btn {
    padding: 0.75rem 1.5rem;
    min-width: 120px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    white-space: nowrap;

    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;

    transition: all 0.2s ease;
}

.btn:hover {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    transform: translateY(-1px);
}

/* Business Owner and Log In button specific styles */
.btn-business-owner,
.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 38px;
    padding: 0 16px;
    min-width: 90px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-business-owner {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-business-owner:hover {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-login {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-login:hover {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-business-owner i,
.btn-login i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-business-owner:hover i,
.btn-login:hover i {
    transform: translateX(2px);
}

.btn-business-owner span,
.btn-login span {
    font-weight: 600;
    letter-spacing: 0.025em;
}

.btn-outline {
    height: 38px;
    padding: 0 16px;
    min-width: 90px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    white-space: nowrap;

    background: white;
    color: #3b82f6;
    border: 1px solid #3b82f6;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: #f8fafc;
    color: #2563eb;
}

.btn-small {
    height: 38px;
    padding: 0 16px;
    min-width: 90px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    white-space: nowrap;

    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-small:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 15000;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.dropdown-menu li {
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: 0.9rem;

    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white !important;

    border: none;
    border-radius: 10px;

    cursor: pointer;
    text-decoration: none;

    margin: 0.4rem 0.5rem;
    width: calc(100% - 1rem);

    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white !important;
    transform: translateY(-1px);
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero section */
#hero {
    background-color: white;
    padding: 3rem 1rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.hero-image img {
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
    position: relative;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Large Hero Section specific styles */
#hero-large .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

#hero-large .hero-image img {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center;
    display: block;
    max-height: 600px;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
    position: relative;
}

#hero-large .hero-image img:hover {
    transform: scale(1.02);
}

/* Mobile responsive hero styles */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-image {
        min-height: 250px;
        width: 100%;
    }
    
    .hero-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-image {
        min-height: 200px;
    }
    
    .hero-image img {
        height: 200px;
    }
}

/* Hero Filters Section */
#hero-filters {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

#hero-filters .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

#hero-filters .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

#hero-filters .search-filters {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#hero-filters .filter-group {
    min-width: 200px;
    flex: 1;
}

#hero-filters .filter-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

#hero-filters .filter-input,
#hero-filters .filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s;
}

#hero-filters .filter-input:focus,
#hero-filters .filter-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

#hero-filters .search-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
    min-height: 42px;
}

#hero-filters .search-btn:hover {
    background-color: #0056b3;
}

/* Featured Chefs Section */
#featured-chefs {
    text-align: center;
    margin-bottom: 3rem;
}

#featured-chefs h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.step {
    flex: 1;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

/* Benefits */
#benefits {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    flex: 1;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.benefit h3 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

/* Explore Chefs */
#explore-chefs {
    text-align: center;
}

.search-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    flex: 1;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-input,
.filter-select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.search-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
    min-height: 42px;
}

.search-btn:hover {
    background-color: #0056b3;
}

.chef-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chef-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.chef-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

.chef-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.chef-card:hover::before {
    transform: scaleX(1);
}

.chef-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chef-card:hover img {
    border-color: #007bff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,123,255,0.2);
}

.chef-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.chef-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.chef-location i {
    color: #007bff;
    font-size: 0.9rem;
}

.chef-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.chef-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.chef-card .btn {
    margin: 0.25rem;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
}

.chef-card .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.chef-card .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Enhanced chef card with specialty tags */
.chef-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.specialty-tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

/* Badge for new chefs */
.new-chef-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    z-index: 10;
}

/* Premium chef badge */
.premium-chef-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
    z-index: 10;
}

/* Chef card overlay for additional info */
.chef-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255,255,255,0.95));
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.chef-card:hover .chef-card-info {
    transform: translateY(0);
}

/* Responsive chef cards */
@media (max-width: 768px) {
    .chef-cards {
        grid-template-columns: 1fr;
    }

    .chef-card {
        padding: 1.25rem;
    }

    .chef-card img {
        width: 100px;
        height: 100px;
    }

    .chef-card h3 {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .chef-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .chef-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* FAQ */
#faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h3 {
    padding: 1rem;
    cursor: pointer;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item h3:hover {
    background-color: #e9ecef;
}

.faq-item p {
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

/* Chef Services */
#weekly-meals,
#special-events {
    text-align: center;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service h3 {
    margin-bottom: 0.5rem;
}

.service p {
    color: #666;
}

/* Contact */
#contact-us {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Contact Information Card */
.contact-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.contact-info-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-card h2 i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for contact info */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }
}

/* Blogs */
#blogs {
    text-align: center;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
}

.blog-post h2 {
    margin-bottom: 0.5rem;
    color: #007bff;
}

.blog-post p {
    color: #666;
}

.read-more {
    color: #007bff;
    font-weight: bold;
}

/* Book a Chef */
#book-a-chef {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.booking-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-align: left;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.booking-form .time-picker {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.booking-form .time-picker select {
    flex: 1;
    min-width: 60px;
    max-width: 80px;
}

.booking-form .time-separator {
    margin: 0 0.125rem;
    font-weight: bold;
    flex-shrink: 0;
}

.booking-form .btn {
    width: 100%;
    padding: 1rem;
}

/* Gallery */
#gallery {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

#gallery h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#gallery p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Owner */
#owner {
    text-align: center;
}

.owner-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.owner-profile img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.owner-info {
    text-align: left;
}

.owner-info h2 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

/* Chef Profile Specific Styles */
#chef-profile {
    max-width: 1000px;
    margin: 0 auto;
}

.chef-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.chef-main-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007bff;
}

.chef-header-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.chef-location {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.chef-details, .pricing-section, .menu-options, .dietary-tags, .reviews-section, .booking-cta {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.chef-details h2, .pricing-section h2, .menu-options h2, .dietary-tags h2, .reviews-section h2 {
    color: #007bff;
    margin-bottom: 1rem;
}

.chef-details ul {
    list-style: none;
    padding: 0;
}

.chef-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.chef-details li:last-child {
    border-bottom: none;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.pricing-card h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.menu-category h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.menu-category ul {
    list-style: none;
    padding: 0;
}

.menu-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.menu-category li:last-child {
    border-bottom: none;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background-color: #007bff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.stars {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.reviews {
    display: grid;
    gap: 1.5rem;
}

.review {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer {
    font-weight: bold;
    color: #333;
}

.review-stars {
    color: #ffc107;
}

.booking-cta {
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.booking-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.booking-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    height: auto;
}

/* Large Hero Section */
#hero-large {
    position: relative;
    min-height: 70vh;
    height: auto;
    overflow: visible;
    margin-bottom: 4rem;
    display: flex;
    align-items: stretch;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    font-weight: bold;
}

.hero-overlay p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    max-width: 600px;
    font-weight: 300;
}

.hero-image-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Chef Photos Gallery Section */
#chef-photos {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
}

#chef-photos h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#chef-photos p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.photos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    text-align: center;
}

.photo-overlay span {
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

/* Chef Videos Section (Home Page) */
#chef-videos {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
}

#chef-videos h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#chef-videos p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
}

.video-item:hover {
    border-color: #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.video-element {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 11px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-item:hover .play-overlay {
    opacity: 0.7;
}

.play-button {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* How It Works Home Section */
#how-it-works-home {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
}

#how-it-works-home h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.step-card h3 {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Who We Are Section */
#who-we-are {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.who-we-are-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.who-we-are-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.who-we-are-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.who-we-are-text h3 {
    color: #007bff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.who-we-are-text ul {
    list-style: none;
    padding: 0;
}

.who-we-are-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.who-we-are-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Why Choose Us Section */
#why-choose-us {
    background-color: white;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

#why-choose-us h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.why-choose-item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-choose-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.why-choose-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    border-radius: 12px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.video-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: #ccc;
}

.video-modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.video-modal-body video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Chef Application Form Styles */
#application {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    border: 1px solid #e9ecef;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h2 {
    font-size: 2.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: #007bff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section h3 i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa0a6;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    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='%23333' 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: 16px;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* File Upload Styles */
.file-upload-container {
    width: 100%;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: #007bff;
    background-color: #f0f7ff;
}

.file-input {
    display: none;
}

.file-upload-display {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.file-upload-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.file-upload-wrapper:hover .file-upload-icon {
    transform: scale(1.05);
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.file-upload-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.file-upload-subtitle {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.file-upload-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.file-upload-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Submit Button Styles */
.submit-section {
    margin-top: 2rem;
    padding-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4);
}

.submit-btn i {
    font-size: 1.2rem;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .file-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .file-upload-display {
        width: 100%;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
}

/* Policy Pages */
#privacy-policy,
#refund-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

#privacy-policy h1,
#refund-policy h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

#privacy-policy h2,
#refund-policy h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

#privacy-policy p,
#refund-policy p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

#privacy-policy ul,
#refund-policy ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

#privacy-policy li,
#refund-policy li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid #007bff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column a:hover {
    color: #007bff;
    transform: translateX(3px);
}

.contact-info {
    background-color: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info i {
    margin-right: 0.75rem;
    width: 20px;
    color: #007bff;
    font-size: 1.2rem;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.social-media a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media a:hover {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    border-color: #007bff;
    transform: translateY(-2px);
}

footer hr {
    border: none;
    border-top: 1px solid #333;
    margin: 2rem auto;
    max-width: 1200px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile responsiveness - FIXED */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling - CRITICAL FIXES */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure all containers fit within screen width */
    .global-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 1rem;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .header-left, .header-center, .header-right {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .header-right {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .action-buttons {
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .nav-menu li {
        width: 100%;
        max-width: 100%;
    }

    .nav-menu a {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 10px;
        font-size: 0.9rem;
        box-sizing: border-box;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
        overflow: visible;
        transition: none;
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        border-radius: 8px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        display: block;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.9rem;
        background: white;
        color: #333;
        box-shadow: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        box-sizing: border-box;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    /* Hero section mobile adjustments */
    #hero-large {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        box-sizing: border-box;
    }

    #hero {
        flex-direction: column;
        text-align: center;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .steps,
    .benefits-list,
    .services,
    .blog-posts,
    .gallery-images {
        grid-template-columns: 1fr;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        box-sizing: border-box;
    }

    .owner-profile {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .owner-info {
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 100%;
        box-sizing: border-box;
    }

    .search-filters {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .filter-group {
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .search-btn {
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .chef-header {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .chef-main-photo {
        width: 150px;
        height: 150px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .chef-header-info h1 {
        font-size: 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .pricing-cards,
    .menu-categories {
        grid-template-columns: 1fr;
        max-width: 100%;
        box-sizing: border-box;
    }

    .tags {
        justify-content: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Home page mobile styles */
    .hero-overlay h1 {
        font-size: 2.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-overlay p {
        font-size: 1.2rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .work-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .who-we-are-text h2 {
        font-size: 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .who-we-are-text ul {
        text-align: left;
        display: inline-block;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Featured video and photos mobile styles */
    .video-container {
        margin: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .video-thumbnail {
        height: 250px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .play-button-large {
        font-size: 3rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .video-title h3 {
        font-size: 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .video-title p {
        font-size: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .photos-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .photo-item img {
        height: 200px;
        max-width: 100%;
        width: 100%;
        object-fit: cover;
        box-sizing: border-box;
    }

    .videos-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .video-item {
        max-width: 100%;
        box-sizing: border-box;
    }

    .video-element {
        height: 200px;
        max-width: 100%;
        width: 100%;
        object-fit: cover;
        box-sizing: border-box;
    }

    /* Why Choose Us mobile styles */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* CRITICAL: Fix all image overflow issues */
    img {
        max-width: 100%;
        height: auto;
        width: 100%;
        object-fit: cover;
        box-sizing: border-box;
    }
    
    /* Fix text overflow issues */
    h1, h2, h3, h4, h5, h6, p {
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix container overflow issues */
    .hero-container,
    .chef-cards,
    .gallery-images,
    .videos-gallery,
    .photos-gallery,
    .testimonials-grid,
    .why-choose-grid,
    .pricing-cards,
    .menu-categories {
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 1rem;
    }
    
    /* Fix form overflow issues */
    .form-container,
    .booking-form,
    .contact-form {
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 1rem;
    }
    
    /* Fix button overflow issues */
    .btn,
    .submit-btn,
    .search-btn {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Customer Testimonials Section */
#testimonials {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: #007bff;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    margin: 0 0 0.25rem 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-location {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    flex: 1;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.testimonial-service {
    margin-top: auto;
    padding-top: 1rem;
}

.service-tag {
    background-color: #007bff;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.gallery-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item-gallery {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
}

.video-item-gallery:hover {
    border-color: #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.video-item-gallery video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.play-overlay-gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-item-gallery:hover .play-overlay-gallery {
    opacity: 0.8;
}

.play-button-gallery {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.play-button-gallery:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Video Modal Mobile Responsiveness */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 15px;
    }

    .video-modal-close {
        font-size: 1.5rem;
        padding: 10px;
    }

    .video-modal-body video {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    main {
        padding: 1rem 0.5rem;
    }

    #hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .video-modal-content {
        max-width: 98vw;
        max-height: 98vh;
        padding: 10px;
    }

    .video-modal-close {
        font-size: 1.2rem;
        padding: 8px;
    }

    .video-modal-body video {
        max-width: 100%;
        max-height: 100%;
    }
    @media (max-width: 900px) {
  #hero-large .hero-content {
    flex-direction: column;
    text-align: center;
  }

  #hero-large .hero-text {
    padding-right: 0 !important;
  }
}
}
/* Desktop hover dropdown */
@media (min-width: 769px) {
  .nav-menu li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
/* FORCE Blue Dropdown Buttons */
.global-nav .dropdown-menu a {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.global-nav .dropdown-menu a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
}

/* Mobile responsive styles for global header */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .global-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem;
  }

  .header-left, .header-center, .header-right {
    flex: none;
    width: 100%;
  }

  .header-right {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .action-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu.mobile-active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    margin: 0.125rem 0;
    border-radius: 6px;
    font-size: 0.95rem;
    background: transparent;
    color: #333;
    border: none;
    transition: all 0.2s ease;
  }

  .nav-menu a:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
  }

  /* Mobile dropdown styles */
  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: #f8f9fa;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    background: white;
  }

  /* Show dropdown when parent has active class */
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin: 0.25rem 0;
    padding: 0.25rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .dropdown-menu a {
    padding: 0.5rem 1rem;
    display: block;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    background: white;
    color: #333;
    box-shadow: none;
    margin: 0;
    width: 100%;
    border-radius: 0;
    border: none;
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  /* Mobile sticky CTA improvements */
  .sticky-cta-bar {
    padding: 0.75rem 1rem;
  }
  
  .sticky-cta-bar .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-width: 45%;
  }
}

/* Tablet responsive styles for dropdowns */
@media (min-width: 769px) and (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu.mobile-active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    margin: 0.125rem 0;
    border-radius: 6px;
    font-size: 0.95rem;
    background: transparent;
    color: #333;
    border: none;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: #f8f9fa;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin: 0.25rem 0;
    padding: 0.25rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
}


/* Hide dropdown arrows in laptop/desktop view (769px and above) */
@media (min-width: 769px) {
  .dropdown-arrow {
    display: inline-block !important;
  }
}

/* Laptop/Desktop Button Size (1024px and above) */
/* Optimized button size for laptop/computer screens */
@media (min-width: 1024px) {
  /* Main button class */
  .btn {
    padding: 8px 16px;
    min-width: 80px;
    height: auto;
    font-size: 13px;
  }
  
  /* Business owner and login buttons */
  .btn-business-owner,
  .btn-login {
    height: auto;
    padding: 8px 16px;
    min-width: 80px;
    font-size: 13px;
  }
  
  /* Outline buttons */
  .btn-outline {
    height: auto;
    padding: 8px 16px;
    min-width: 80px;
    font-size: 13px;
  }
  
  /* Small buttons */
  .btn-small {
    height: auto;
    padding: 8px 16px;
    min-width: 80px;
    font-size: 13px;
  }
  
  /* Navigation menu buttons/links */
  .nav-menu a {
    height: auto;
    padding: 8px 16px;
    min-width: 80px;
    font-size: 13px;
  }
  
  /* Action buttons container */
  .action-buttons {
    gap: 0.4rem;
  }
  
  /* Large buttons */
  .btn-large {
    padding: 10px 20px;
    font-size: 14px;
    height: auto;
  }
  
  /* Submit buttons in forms */
  .submit-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* Search button in filters */
  .search-btn {
    padding: 8px 16px;
    min-height: auto;
    font-size: 13px;
  }
  
  /* Dropdown menu buttons */
  .dropdown-menu a {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  /* Mobile nav menu buttons (in desktop view shown in mobile overlay) */
  .mobile-nav-menu a {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  /* Mobile dropdown toggle */
  .mobile-dropdown-toggle {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* Extra large screens (1200px and above) */
@media (min-width: 1200px) {
  .btn {
    padding: 8px 16px;
    min-width: 80px;
    height: auto;
    font-size: 13px;
  }
  
  .btn-business-owner,
  .btn-login {
    height: auto;
    padding: 8px 16px;
    min-width: 80px;
    font-size: 13px;
  }
  
  .btn-outline,
  .btn-small {
    height: auto;
    padding: 8px 16px;
    min-width: 80px;
    font-size: 13px;
  }
  
  .nav-menu a {
    height: auto;
    padding: 8px 16px;
    min-width: 80px;
    font-size: 13px;
  }
}
