@import url('https://fonts.googleapis.com/css2?family=BBH+Hegarty&family=Outfit:wght@100..900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: "Outfit", sans-serif;
}

a {
    text-decoration: none;
    color: #686868;
}

ul {
    list-style-type: none;
    padding: 0;
}

h2 {
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 400;
    font-size: 18px;
}


/* Header styles */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border-bottom: 2px solid rgba(255, 107, 107, 0.15);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF9F43, transparent);
    opacity: 0.5;
}

.navigationMenu ul {
    display: flex;
    gap: 10px;
    font-size: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigationMenu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 8px;
    border-radius: 5px;
    position: relative;
}

.navigationMenu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B6B, #FF9F43);
    transition: width 0.3s ease;
}

.navigationMenu a:hover {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.08);
}

.navigationMenu a:hover::after {
    width: 100%;
}

.logo {
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo h3 {
    font-size: 14px;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B, #FF9F43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 32px !important;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo a:hover img {
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.25));
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Menu - Mobile Hidden by Default */
.navigationMenu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 107, 107, 0.15);
}

.navigationMenu.active {
    display: block;
}

.navigationMenu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.navigationMenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navigationMenu li:last-child {
    border-bottom: none;
}

.navigationMenu a {
    display: block;
    padding: 12px 20px !important;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.navigationMenu a::after {
    display: none;
}

.navigationMenu a:hover {
    background: rgba(255, 107, 107, 0.15);
    padding-left: 25px !important;
    color: #FF6B6B;
}

/* Responsive Header - Tablet */
@media screen and (min-width: 600px) {
    .hamburger {
        display: none;
    }

    .navigationMenu {
        display: flex !important;
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        border-bottom: none;
    }

    .navigationMenu ul {
        display: flex;
        flex-direction: row;
        gap: 15px;
        font-size: 13px;
    }

    .navigationMenu li {
        border-bottom: none;
    }

    .navigationMenu a {
        display: inline-block;
        padding: 6px 10px !important;
        border-radius: 5px;
    }

    .navigationMenu a::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #FF6B6B, #FF9F43);
        transition: width 0.3s ease;
    }

    .navigationMenu a:hover {
        background: rgba(255, 107, 107, 0.08);
        padding-left: 10px !important;
        color: #FF6B6B;
    }

    .navigationMenu a:hover::after {
        width: 100%;
    }

    header {
        padding: 12px 20px;
    }

    .navigationMenu ul {
        gap: 15px;
        font-size: 13px;
    }

    .navigationMenu a {
        padding: 6px 10px;
    }

    .logo {
        font-size: 17px;
        gap: 8px;
    }

    .logo a {
        gap: 8px;
    }

    .logo h3 {
        font-size: 15px;
    }

    .logo img {
        height: 35px !important;
    }
}

/* Responsive Header - Desktop */
@media screen and (min-width: 768px) {
    header {
        padding: 14px 25px;
    }

    .navigationMenu ul {
        gap: 20px;
        font-size: 14px;
    }

    .navigationMenu a {
        padding: 7px 12px;
    }

    .logo {
        font-size: 18px;
        gap: 10px;
    }

    .logo a {
        gap: 10px;
    }

    .logo h3 {
        font-size: 16px;
    }

    .logo img {
        height: 40px !important;
    }
}

/* Responsive Header - Large Desktop */
@media screen and (min-width: 1024px) {
    header {
        padding: 16px 30px;
    }

    .navigationMenu ul {
        gap: 25px;
        font-size: 15px;
    }

    .navigationMenu a {
        padding: 8px 14px;
    }

    .logo {
        font-size: 20px;
        gap: 12px;
    }

    .logo a {
        gap: 12px;
    }

    .logo h3 {
        font-size: 18px;
    }

    .logo img {
        height: 45px !important;
    }
}



/* Main content styles */

.mainArea {
    margin-bottom: 0;
}

.topPara {
    padding: 30px 15px;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.48) 0%, rgba(255, 250, 205, 0.9) 100%), url(assets/home.jpeg);
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover;
    background-color: #e1e1e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.topPara::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.topPara h1 {
    width: 100%;
    font-size: 26px;
    margin: 10px 0;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.topPara p {
    font-size: 15px;
    max-width: 100%;
    background-color: rgba(240, 248, 255, 0.95);
    padding: 12px 15px;
    border-radius: 8px;
    line-height: 1.6;
    color: #34495e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #686868;
    position: relative;
    z-index: 1;
}

/* City Selector Styles */
.city-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0 20px 0;
    position: relative;
    z-index: 1;
}

.city-selector label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding: 0;
}

.city-input {
    padding: 12px 14px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B6B' 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 10px center;
    background-size: 20px;
    padding-right: 36px;
}

.city-input:hover {
    border-color: #FF6B6B;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
    transform: translateY(-1px);
}

.city-input:focus {
    outline: none;
    border-color: #FF6B6B;
    background-color: 4px rgba(255, 107, 107, 0.25), 0 4px 16gba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.city-input option {
    padding: 8px;
    color: #2c3e50;
    background-color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1fb855 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
    overflow: hidden;
    padding: 12px 24px !important;
    font-size: 15px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1fb855 0%, #128C7E 100%) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 
                0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.whatsapp-btn:active {
    transform: t5px;
    margin-right: 0 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.para-2 {
    margin: 40px 0;
    text-align: center;
    padding: 30px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.onboarding-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.onboarding-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #686868, transparent);
    border-radius: 2px;
}

.onboarding-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    max-width: 800px;
    margin: 20px auto 35px;
    font-weight: 400;
}

.onboarding-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.benefit-card h3 {
    font-size: 18px;
    color: #2c3e50;
    margin: 10px 0;
    font-weight: 600;
}

.benefit-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.onboarding-cta {
    margin-top: 35px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(104, 104, 104, 0.05) 0%, rgba(104, 104, 104, 0.1) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(104, 104, 104, 0.3);
}

.cta-text {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.join-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 50%, #D84A5A 100%) !important;
    padding: 10px 24px !important;
    font-size: 13px !important;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(238, 90, 111, 0.4),
                0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.join-btn::before {
    content: '✨';
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.join-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.join-btn:hover::before {
    left: 15px;
    opacity: 1;
}

.join-btn:hover::after {
    width: 400px;
    height: 400px;
}

.join-btn:hover {
    background: linear-gradient(135deg, #EE5A6F 0%, #D84A5A 50%, #C23A4A 100%) !important;
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.5),
                0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.join-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
}

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

.centered {
    padding: 0 20px;
}

.ctaButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #686868;
    color: white;
    border-radius: 5px;
    margin: 10px 0;
}

.ctaButton:hover {
    background-color: #505050;
}

.para-lottie {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.para-3 {
    margin: 30px 0;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.services-header {
    text-align: center;
    margin-bottom: 25px;
}

.services-header h2 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #686868, #505050);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin-top: 15px;
    padding: 0 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    min-height: 120px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #FFA07A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(104, 104, 104, 0.2);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:nth-child(1) .service-icon {
    animation-delay: 0s;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: 0.6s;
}

.service-name {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-desc {
    font-size: 11px;
    color: #6c757d;
    text-align: center;
    line-height: 1.5;
    margin: 5px 0 0 0;
    padding: 0 5px;
}

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

.centered ul li img {
    max-width: 30px;
    margin-bottom: 5px;
}




/* Join Us section styles */

.join-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 50%, #D84A5A 100%);
    color: white;
    margin-bottom: 40px;
}

.join-header h1 {
    font-size: 28px;
    margin: 0 0 12px 0;
    font-weight: 700;
    font-family: "BBH Hegarty", sans-serif;
}

.join-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.join-section {
    padding: 0 15px 60px 15px;
}

.form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 30px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.form-header h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.form-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.joinForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-title {
    font-size: 15px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 700;
    text-decoration: none;
    border-left: 4px solid #FF6B6B;
    padding-left: 10px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.joinForm label {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding: 0;
}

.optional {
    font-weight: 400;
    color: #6c757d;
    font-size: 11px;
}

.joinForm input, .joinForm textarea {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
}

.joinForm input:focus, .joinForm textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.joinForm input::placeholder, .joinForm textarea::placeholder {
    color: #b0b0b0;
}

/* File upload input styling */
.joinForm input[type="file"] {
    padding: 8px 0;
    border: 2px dashed #FF6B6B;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.03) 0%, rgba(238, 90, 111, 0.03) 100%);
    cursor: pointer;
}

.joinForm input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.joinForm input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #EE5A6F 0%, #D84A5A 100%);
}

.form-helper-text {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 8px 0;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* Working Hours Dynamic Fields */
.working-hours-entry {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FF6B6B;
}

.working-hours-entry .form-row {
    gap: 10px;
}

.working-hours-entry .form-row > div {
    flex: 1;
}

.add-hours-btn, .remove-hours-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Outfit", sans-serif;
}

.add-hours-btn {
    background: linear-gradient(135deg, #25D366 0%, #1fb855 100%);
    color: white;
    align-self: flex-start;
    margin-top: 10px;
}

.add-hours-btn:hover {
    background: linear-gradient(135deg, #1fb855 0%, #128C7E 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.remove-hours-btn {
    background: #ff6b6b;
    color: white;
    align-self: flex-end;
}

.remove-hours-btn:hover {
    background: #d84a5a;
    box-shadow: 0 4px 12px rgba(216, 74, 90, 0.3);
}

.working-hours-entry .form-row {
    align-items: flex-end;
}

.commission-info {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(238, 90, 111, 0.05) 100%);
    border-left: 4px solid #FF6B6B;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.commission-info strong {
    color: #2c3e50;
    font-size: 14px;
}

.commission-info p {
    color: #6c757d;
    font-size: 12px;
    margin: 6px 0 0 0;
}

.terms-section {
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #e0e0e0;
}

.terms-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.terms-info input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 3px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    accent-color: #FF6B6B;
}

.checkbox-label {
    font-size: 12px;
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: #FF6B6B;
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: #D84A5A;
}

.submitButton {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 50%, #D84A5A 100%);
    color: white;
    padding: 11px 25px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(238, 90, 111, 0.35);
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.submitButton::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submitButton:hover {
    background: linear-gradient(135deg, #EE5A6F 0%, #D84A5A 50%, #C23A4A 100%);
    box-shadow: 0 8px 25px rgba(238, 90, 111, 0.45);
    transform: translateY(-2px);
}

.submitButton:hover::before {
    width: 400px;
    height: 400px;
}

.submitButton:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.35);
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Image Preview Styles */
.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    min-height: 40px;
}

.image-preview-container:empty {
    display: none;
}

.preview-item {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-item .image-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 10px;
    padding: 4px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-preview-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(255, 107, 107, 0.95);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.remove-preview-btn:hover {
    background: rgba(216, 74, 90, 1);
    transform: scale(1.1);
}

.pdf-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    text-align: center;
}

.pdf-preview .image-name {
    position: static;
    background: none;
    color: #2c3e50;
    margin-top: 8px;
    font-size: 11px;
}

/* Responsive Image Preview */
@media screen and (min-width: 600px) {
    .preview-item {
        width: 140px;
        height: 140px;
    }

    .image-preview-container {
        gap: 15px;
        padding: 12px;
    }
}

@media screen and (min-width: 768px) {
    .preview-item {
        width: 150px;
        height: 150px;
    }

    .preview-item .image-name {
        font-size: 11px;
        padding: 5px 8px;
    }
}

h4 {
    text-decoration: none;
}

/* Partner Agreement Styling */
.partner-agreement {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.03) 0%, rgba(238, 90, 111, 0.03) 100%);
    border-left: 5px solid #FF6B6B;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.agreement-list {
    list-style: decimal;
    padding-left: 30px;
    margin: 20px 0;
}

.agreement-list li {
    margin: 12px 0;
    color: #2c3e50;
    line-height: 1.8;
    font-size: 15px;
}

.signature-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed #FF6B6B;
}

.signature-section h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.signature-field {
    margin-bottom: 30px;
}

.signature-field label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 8px;
}

.signature-line {
    border-bottom: 2px solid #2c3e50;
    margin: 0;
    height: 25px;
    width: 100%;
}

/* Print Button */
.print-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: "Outfit", sans-serif;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.print-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.print-btn:active {
    transform: translateY(0);
}

/* Print Styles */
@media print {
    header, footer, .print-btn {
        display: none;
    }
    
    .partner-agreement {
        background: white;
        border: 2px solid #FF6B6B;
        padding: 40px;
        box-shadow: none;
    }
    
    body {
        margin: 0;
        padding: 20px;
    }
}

/* ===== TERMS PAGE BEAUTIFICATION ===== */

.terms {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Terms Header */
.terms-header {
    text-align: center;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 50%, #D84A5A 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.25);
}

.terms-header h1 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
    font-family: "BBH Hegarty", sans-serif;
    line-height: 1.3;
}

.terms-intro {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

/* Terms Content */
.terms-content {
    margin-bottom: 30px;
}

.terms-content > p {
    font-size: 13px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Terms Cards */
.terms-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid #FF6B6B;
}

.terms-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.card-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(238, 90, 111, 0.08) 100%);
    padding: 15px 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-header h3 {
    font-size: 17px;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
}

.card-content {
    padding: 18px;
}

.card-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #505050;
    margin-bottom: 12px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Restriction List */
.restriction-title {
    font-size: 13px !important;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    color: #2c3e50 !important;
}

.restriction-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 15px;
}

.restriction-list li {
    padding: 6px 0 6px 22px;
    color: #505050;
    font-size: 12px;
    line-height: 1.6;
    position: relative;
}

.restriction-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #FF6B6B;
    font-weight: 700;
    font-size: 14px;
}

/* Partner Section */
.partner-section {
    margin-top: 30px;
}

.partner-header {
    text-align: center;
    margin-bottom: 25px;
}

.partner-header h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.partner-intro {
    font-size: 13px;
    color: #686868;
    margin: 0;
    line-height: 1.6;
}

/* Partner Agreement Styling */
.partner-agreement {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(238, 90, 111, 0.05) 100%);
    border-left: 5px solid #FF6B6B;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.1);
}

.agreement-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.agreement-list li {
    margin: 12px 0;
    color: #2c3e50;
    line-height: 1.7;
    font-size: 13px;
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.agreement-list li:hover {
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
    transform: translateX(3px);
}

.agreement-emoji {
    font-size: 16px;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.agreement-list strong {
    color: #FF6B6B;
    font-weight: 700;
}

/* Responsive Terms */
@media screen and (min-width: 768px) {
    .terms-header {
        padding: 50px 40px;
    }

    .terms-header h1 {
        font-size: 42px;
    }

    .partner-header h2 {
        font-size: 38px;
    }

    .partner-agreement {
        padding: 40px;
    }
}



/* Contact Us section styles */

.contactUs {
    margin: 0;
    padding: 20px 12px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Header */
.contact-header {
    text-align: center;
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 50%, #2E86DE 100%);
    color: white;
    padding: 25px 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

.contact-header h1 {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
    font-family: "BBH Hegarty", sans-serif;
    line-height: 1.3;
    word-break: break-word;
}

.contact-tagline {
    font-size: 12px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
    word-break: break-word;
}

/* Contact Intro Card */
.contact-intro-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #5DADE2;
}

.contact-intro-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #505050;
    margin: 0;
    word-break: break-word;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #5DADE2;
}

.contact-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.contact-card-header {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.08) 0%, rgba(52, 152, 219, 0.08) 100%);
    padding: 12px 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-header h3 {
    font-size: 16px;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
}

.contact-card-content {
    padding: 15px;
}

.contact-detail {
    font-size: 11px;
    color: #686868;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #3498DB;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: #2E86DE;
    text-decoration: underline;
    transform: translateX(3px);
}

.link-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.response-time {
    font-size: 10px;
    color: #999;
    margin: 8px 0 0 0;
    font-style: italic;
}

/* WhatsApp Chat Button */
.whatsapp-chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #25D366 0%, #20BA58 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-chat-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wa-icon {
    font-size: 16px;
    flex-shrink: 0;
    animation: bounce-heart 0.6s ease-in-out infinite;
}

.whatsapp-chat-btn:hover {
    background: linear-gradient(135deg, #20BA58 0%, #1fa952 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-chat-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-chat-btn:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

@keyframes bounce-heart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 10px;
    padding: 20px 15px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.form-header p {
    font-size: 12px;
    color: #686868;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form label {
    font-size: 12px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 12px;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
    color: #2c3e50;
    background: white;
    word-break: break-word;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5DADE2;
    box-shadow: 0 0 0 3px rgba(93, 173, 226, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b0b0b0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.submit-btn {
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 50%, #2E86DE 100%);
    color: white;
    padding: 11px 25px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.35);
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #3498DB 0%, #2E86DE 50%, #2874A6 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.45);
    transform: translateY(-2px);
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.35);
}

.form-note {
    text-align: center;
    font-size: 10px;
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 0;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 25px;
}

.faq-section h2 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #5DADE2;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-question p {
    font-size: 12px;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    line-height: 1.5;
}

.faq-answer {
    padding: 12px 15px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    font-size: 11px;
    color: #505050;
    margin: 0;
    line-height: 1.6;
    word-break: break-word;
}

.faq-answer a {
    color: #5DADE2;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
    color: #2E86DE;
}

/* Lottie Container */
.lottie-container {
    width: 100%;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.02) 0%, rgba(52, 152, 219, 0.02) 100%);
    border-radius: 10px;
}

.lottie-animation {
    width: 100%;
    height: 220px;
    display: block;
}

/* Support Info */
.support-info {
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 50%, #2E86DE 100%);
    color: white;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

.support-info h2 {
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: white;
}

.support-info p {
    font-size: 12px;
    margin: 8px 0;
    opacity: 0.95;
    line-height: 1.6;
    word-break: break-word;
}

/* Responsive Contact */
@media screen and (min-width: 600px) {
    .contactUs {
        padding: 30px 20px 60px;
    }

    .contact-header {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .contact-header h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-tagline {
        font-size: 13px;
    }

    .contact-methods {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .contact-intro-card {
        padding: 18px;
    }

    .contact-intro-card p {
        font-size: 13px;
    }

    .contact-card-header {
        padding: 15px 20px;
    }

    .contact-icon {
        font-size: 22px;
    }

    .contact-card-header h3 {
        font-size: 17px;
    }

    .contact-card-content {
        padding: 18px;
    }

    .contact-detail {
        font-size: 12px;
    }

    .contact-link {
        font-size: 14px;
    }

    .whatsapp-chat-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .wa-icon {
        font-size: 17px;
    }

    .contact-form-section {
        padding: 25px 20px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .form-header p {
        font-size: 13px;
    }

    .contact-form .form-field {
        gap: 6px;
    }

    .contact-form label {
        font-size: 13px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 13px;
        padding: 11px 13px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 12px 28px;
    }

    .form-note {
        font-size: 11px;
    }

    .faq-section h2 {
        font-size: 20px;
    }

    .faq-question {
        padding: 14px 18px;
    }

    .faq-icon {
        font-size: 18px;
    }

    .faq-question p {
        font-size: 13px;
    }

    .faq-answer {
        padding: 14px 18px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .support-info {
        padding: 25px 20px;
    }

    .support-info h2 {
        font-size: 20px;
    }

    .lottie-container {
        padding: 20px 0;
        margin: 30px 0;
    }

    .lottie-animation {
        height: 280px;
    }
    .contactUs {
        padding: 40px 25px 70px;
    }

    .contact-header {
        padding: 45px 35px;
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-tagline {
        font-size: 14px;
    }

    .contact-methods {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .contact-intro-card {
        margin-bottom: 25px;
        padding: 20px;
    }

    .contact-intro-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-card-header {
        padding: 18px 22px;
    }

    .contact-icon {
        font-size: 24px;
    }

    .contact-card-header h3 {
        font-size: 18px;
    }

    .contact-card-content {
        padding: 20px;
    }

    .contact-detail {
        font-size: 13px;
    }

    .contact-link {
        font-size: 15px;
    }

    .whatsapp-chat-btn {
        padding: 13px 22px;
        font-size: 14px;
    }

    .wa-icon {
        font-size: 18px;
    }

    .contact-form-section {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .form-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .form-header p {
        font-size: 14px;
    }

    .contact-form {
        gap: 18px;
    }

    .contact-form label {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .contact-form textarea {
        min-height: 140px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 13px 30px;
    }

    .faq-section {
        margin-bottom: 30px;
    }

    .faq-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .faq-container {
        gap: 15px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-question p {
        font-size: 14px;
    }

    .faq-answer {
        padding: 16px 20px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }

    .support-info {
        padding: 30px 25px;
    }

    .support-info h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .support-info p {
        font-size: 14px;
    }

    .lottie-container {
        padding: 25px 0;
        margin: 35px 0;
    }

    .lottie-animation {
        height: 320px;
    }
}

@media screen and (min-width: 1024px) {
    .contactUs {
        padding: 50px 30px 80px;
    }

    .contact-header {
        padding: 55px 45px;
        margin-bottom: 40px;
    }

    .contact-header h1 {
        font-size: 36px;
    }

    .contact-tagline {
        font-size: 15px;
    }

    .contact-methods {
        gap: 25px;
        margin-bottom: 40px;
    }

    .contact-intro-card {
        padding: 25px;
        margin-bottom: 30px;
    }

    .contact-intro-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .contact-card {
        border-left: 5px solid #5DADE2;
    }

    .contact-card-header {
        padding: 20px 25px;
    }

    .contact-icon {
        font-size: 26px;
    }

    .contact-card-header h3 {
        font-size: 19px;
    }

    .contact-card-content {
        padding: 25px;
    }

    .contact-detail {
        font-size: 14px;
    }

    .contact-link {
        font-size: 16px;
    }

    .whatsapp-chat-btn {
        padding: 14px 25px;
        font-size: 15px;
    }

    .wa-icon {
        font-size: 19px;
    }

    .contact-form-section {
        padding: 40px 35px;
        margin-bottom: 35px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-header p {
        font-size: 15px;
    }

    .contact-form {
        gap: 20px;
    }

    .contact-form label {
        font-size: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 15px;
        padding: 13px 15px;
    }

    .contact-form textarea {
        min-height: 160px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 14px 35px;
    }

    .faq-section {
        margin-bottom: 35px;
    }

    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-container {
        gap: 18px;
    }

    .faq-question {
        padding: 18px 22px;
    }

    .faq-icon {
        font-size: 22px;
    }

    .faq-question p {
        font-size: 15px;
    }

    .faq-answer {
        padding: 18px 22px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
    }

    .support-info {
        padding: 40px 45px;
    }

    .support-info h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .support-info p {
        font-size: 15px;
        line-height: 1.8;
    }

    .lottie-container {
        padding: 30px 0;
        margin: 40px 0;
    }

    .lottie-animation {
        height: 380px;
    }
}




/* About Us section styles */
.aboutUs {
    margin: 0;
    padding: 20px 12px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Header */
.about-header {
    text-align: center;
    background: linear-gradient(135deg, #FF9F43 0%, #FFA502 50%, #FF8C42 100%);
    color: white;
    padding: 25px 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(255, 159, 67, 0.25);
}

.about-header h1 {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
    font-family: "BBH Hegarty", sans-serif;
    line-height: 1.3;
    word-break: break-word;
}

.about-tagline {
    font-size: 12px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
    word-break: break-word;
}

/* About Cards */
.about-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #FF9F43;
}

.about-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.about-card .card-header {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.08) 0%, rgba(255, 165, 2, 0.08) 100%);
    padding: 12px 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-emoji {
    font-size: 18px;
    flex-shrink: 0;
}

.about-card .card-header h2 {
    font-size: 16px;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
}

.about-card .card-content {
    padding: 15px;
}

.about-card .card-content p {
    font-size: 12px;
    line-height: 1.6;
    color: #505050;
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.about-card .card-content p:last-child {
    margin-bottom: 0;
}

.about-card .card-content strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Mission List */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.mission-list li {
    padding: 6px 0 6px 18px;
    font-size: 11px;
    color: #505050;
    line-height: 1.5;
    position: relative;
    word-break: break-word;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF9F43;
    font-weight: 700;
    font-size: 14px;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.service-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.05) 0%, rgba(255, 165, 2, 0.05) 100%);
    transform: translateX(3px);
}

.service-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.service-details {
    flex: 1;
}

.service-details h4 {
    font-size: 12px;
    margin: 0 0 4px 0;
    color: #2c3e50;
    font-weight: 700;
}

.service-details p {
    font-size: 11px;
    color: #686868;
    margin: 0;
    line-height: 1.4;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
}

.reason-item {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
}

.reason-item:hover {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.08) 0%, rgba(255, 165, 2, 0.08) 100%);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(255, 159, 67, 0.15);
}

.reason-icon {
    font-size: 16px;
    flex-shrink: 0;
    min-width: 20px;
    text-align: center;
    margin-top: 2px;
}

.reason-item h4 {
    font-size: 12px;
    margin: 0 0 3px 0;
    color: #2c3e50;
    font-weight: 700;
}

.reason-item p {
    font-size: 11px;
    color: #686868;
    margin: 0;
    line-height: 1.4;
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.value-item {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #FF9F43;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.08) 0%, rgba(255, 165, 2, 0.08) 100%);
    box-shadow: 0 2px 8px rgba(255, 159, 67, 0.15);
}

.value-item h4 {
    font-size: 12px;
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 11px;
    color: #686868;
    margin: 0;
    line-height: 1.4;
}

/* Founder Card */
.founder-card {
    margin-top: 20px;
}

.founder-content {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.founder-image {
    max-width: 120px;
    width: 100%;
    border: 3px solid #FF9F43;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(255, 159, 67, 0.25);
}

.founder-details {
    width: 100%;
}

.founder-details h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-weight: 700;
}

.founder-quote {
    font-size: 13px !important;
    font-style: italic;
    color: #FF9F43;
    font-weight: 700;
    margin: 0 0 10px 0 !important;
}

.founder-bio {
    font-size: 11px;
    color: #686868;
    line-height: 1.6;
    margin: 0 !important;
}

/* CTA Section */
.about-cta {
    text-align: center;
    background: linear-gradient(135deg, #FF9F43 0%, #FFA502 50%, #FF8C42 100%);
    color: white;
    padding: 25px 15px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(255, 159, 67, 0.25);
}

.about-cta h2 {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: white;
}

.about-cta p {
    font-size: 12px;
    margin: 0 0 15px 0;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.cta-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-explore {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-explore:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.cta-join {
    background: white;
    color: #FF9F43;
}

.cta-join:hover {
    background: #fff9f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* About Footer Message */
.about-footer {
    text-align: center;
    font-size: 11px;
    color: #6c757d;
    font-style: italic;
    margin-top: 20px;
    padding: 0 10px;
    line-height: 1.6;
}

/* Responsive About */
@media screen and (min-width: 600px) {
    .aboutUs {
        padding: 30px 20px 60px;
    }

    .about-header {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .about-header h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .about-tagline {
        font-size: 13px;
    }

    .about-card .card-header {
        padding: 15px 20px;
    }

    .card-emoji {
        font-size: 20px;
    }

    .about-card .card-header h2 {
        font-size: 18px;
    }

    .about-card .card-content {
        padding: 18px;
    }

    .about-card .card-content p {
        font-size: 13px;
    }

    .mission-list li {
        font-size: 12px;
        padding-left: 22px;
    }

    .service-item {
        padding: 12px;
    }

    .service-icon {
        font-size: 20px;
    }

    .service-details h4 {
        font-size: 13px;
    }

    .service-details p {
        font-size: 12px;
    }

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

    .reason-item {
        flex-direction: column;
        text-align: center;
    }

    .reason-icon {
        margin-top: 0;
        font-size: 18px;
    }

    .reason-item h4 {
        font-size: 13px;
    }

    .reason-item p {
        font-size: 12px;
    }

    .value-item {
        padding: 14px;
    }

    .value-item h4 {
        font-size: 13px;
    }

    .value-item p {
        font-size: 12px;
    }

    .founder-image {
        max-width: 140px;
    }

    .founder-details h3 {
        font-size: 18px;
    }

    .founder-quote {
        font-size: 14px !important;
    }

    .founder-bio {
        font-size: 12px;
    }

    .about-cta {
        padding: 30px 25px;
    }

    .about-cta h2 {
        font-size: 24px;
    }

    .about-cta p {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .about-footer {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .aboutUs {
        padding: 40px 25px 70px;
    }

    .about-header {
        padding: 45px 35px;
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .about-header h1 {
        font-size: 32px;
    }

    .about-tagline {
        font-size: 14px;
    }

    .about-card {
        margin-bottom: 20px;
    }

    .about-card .card-header {
        padding: 18px 22px;
    }

    .card-emoji {
        font-size: 22px;
    }

    .about-card .card-header h2 {
        font-size: 19px;
    }

    .about-card .card-content {
        padding: 20px;
    }

    .about-card .card-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .mission-list li {
        font-size: 13px;
    }

    .service-item {
        padding: 14px;
    }

    .service-details h4 {
        font-size: 14px;
    }

    .service-details p {
        font-size: 13px;
    }

    .reasons-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }

    .reason-item {
        padding: 14px;
    }

    .reason-icon {
        font-size: 20px;
    }

    .reason-item h4 {
        font-size: 14px;
    }

    .reason-item p {
        font-size: 13px;
    }

    .values-list {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 15px;
    }

    .value-item {
        padding: 16px;
    }

    .value-item h4 {
        font-size: 14px;
    }

    .value-item p {
        font-size: 13px;
    }

    .founder-card {
        margin-top: 30px;
    }

    .founder-content {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 25px;
        align-items: center;
    }

    .founder-image {
        max-width: 150px;
        flex-shrink: 0;
    }

    .founder-details {
        text-align: left;
    }

    .founder-details h3 {
        font-size: 20px;
    }

    .founder-quote {
        font-size: 15px !important;
    }

    .founder-bio {
        font-size: 13px;
    }

    .about-cta {
        padding: 40px 35px;
        margin: 35px 0;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 13px 30px;
        font-size: 14px;
    }

    .about-footer {
        font-size: 13px;
        margin-top: 25px;
    }
}

@media screen and (min-width: 1024px) {
    .aboutUs {
        padding: 50px 30px 80px;
    }

    .about-header {
        padding: 55px 45px;
        margin-bottom: 40px;
    }

    .about-header h1 {
        font-size: 36px;
    }

    .about-tagline {
        font-size: 15px;
    }

    .about-card {
        margin-bottom: 24px;
        border-left: 5px solid #FF9F43;
    }

    .about-card .card-header {
        padding: 20px 25px;
    }

    .card-emoji {
        font-size: 24px;
    }

    .about-card .card-header h2 {
        font-size: 20px;
    }

    .about-card .card-content {
        padding: 25px;
    }

    .about-card .card-content p {
        font-size: 15px;
        margin-bottom: 14px;
        line-height: 1.7;
    }

    .mission-list li {
        font-size: 14px;
    }

    .services-list {
        gap: 15px;
    }

    .service-item {
        padding: 16px;
    }

    .service-icon {
        font-size: 22px;
    }

    .service-details h4 {
        font-size: 15px;
    }

    .service-details p {
        font-size: 14px;
    }

    .reasons-grid {
        gap: 18px;
    }

    .reason-item {
        padding: 16px;
    }

    .reason-icon {
        font-size: 22px;
        min-width: 24px;
    }

    .reason-item h4 {
        font-size: 15px;
    }

    .reason-item p {
        font-size: 14px;
    }

    .values-list {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .value-item {
        padding: 18px;
    }

    .value-item h4 {
        font-size: 15px;
    }

    .value-item p {
        font-size: 14px;
    }

    .founder-content {
        gap: 30px;
        padding: 30px;
    }

    .founder-image {
        max-width: 180px;
    }

    .founder-details h3 {
        font-size: 22px;
    }

    .founder-quote {
        font-size: 16px !important;
    }

    .founder-bio {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-cta {
        padding: 50px 45px;
        margin: 40px 0;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .about-cta p {
        font-size: 15px;
    }

    .cta-buttons {
        gap: 20px;
    }

    .cta-btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .about-footer {
        font-size: 14px;
        margin-top: 30px;
    }
}   


/* Terms and Conditions section styles */

.terms {
    padding: 20px 12px;
    margin: 0;
}



/* Privacy Policy section styles */

.privacy {
    padding: 15px 10px;
    margin: 0;
}

/* Privacy Header */
.privacy-header {
    text-align: center;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #3d8b40 100%);
    color: white;
    padding: 20px 12px;
    border-radius: 8px;
    margin: 10px 0 15px 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.privacy-header h1 {
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 700;
    font-family: "BBH Hegarty", sans-serif;
    line-height: 1.2;
    word-break: break-word;
}

.privacy-intro {
    font-size: 12px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
    word-break: break-word;
}

/* Privacy Content */
.privacy-content {
    margin-bottom: 20px;
}

.privacy-content > p {
    font-size: 11px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Privacy Cards */
.privacy-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #4CAF50;
}

.privacy-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.privacy-card .card-header {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(69, 160, 73, 0.08) 100%);
    padding: 10px 12px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-card .card-header h3 {
    font-size: 13px;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    word-break: break-word;
}

.privacy-card .card-content {
    padding: 10px;
}

.privacy-card .card-content p {
    font-size: 11px;
    line-height: 1.5;
    color: #505050;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.privacy-card .card-content p:last-child {
    margin-bottom: 0;
}

/* Privacy List */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.privacy-list li {
    padding: 6px 0;
    color: #505050;
    font-size: 10px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    border-bottom: 1px solid #f5f5f5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 13px;
    min-width: 14px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.privacy-list strong {
    color: #2c3e50;
    font-weight: 600;
    word-break: break-word;
}

/* Important Note */
.important-note {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0.08) 100%) !important;
    border-left: 3px solid #FFC107;
    padding: 8px;
    border-radius: 6px;
    margin: 10px 0 0 0 !important;
    font-size: 10px !important;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
    word-break: break-word;
}

.contact-info p {
    margin: 5px 0;
    font-size: 11px;
    color: #2c3e50;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Contact Card Special Style */
.contact-card {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(69, 160, 73, 0.05) 100%);
    margin-top: 20px;
}

/* Policy Footer */
.policy-footer {
    text-align: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #e0e0e0;
    font-size: 10px;
    color: #6c757d;
    font-style: italic;
}

/* Responsive Privacy */
@media screen and (min-width: 600px) {
    .privacy {
        padding: 25px 15px;
    }

    .privacy-header {
        padding: 35px 25px;
        margin: 20px 0 30px 0;
    }

    .privacy-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .privacy-intro {
        font-size: 13px;
    }

    .privacy-content > p {
        font-size: 13px;
    }

    .privacy-card {
        margin-bottom: 18px;
        border-left: 5px solid #4CAF50;
    }

    .privacy-card .card-header {
        padding: 15px 20px;
    }

    .privacy-card .card-header h3 {
        font-size: 17px;
    }

    .privacy-card .card-content {
        padding: 18px;
    }

    .privacy-card .card-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .privacy-list li {
        padding: 10px 0;
        font-size: 12px;
    }

    .list-icon {
        font-size: 16px;
        min-width: 20px;
    }

    .important-note {
        font-size: 12px !important;
        padding: 12px;
    }

    .contact-info {
        padding: 12px;
    }

    .contact-info p {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .privacy {
        max-width: 900px;
        margin: 0 auto;
        padding: 30px 20px;
    }

    .privacy-header {
        padding: 40px 35px;
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .privacy-header h1 {
        font-size: 38px;
    }

    .privacy-intro {
        font-size: 15px;
    }

    .privacy-content > p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .privacy-card {
        margin-bottom: 22px;
    }

    .privacy-card .card-header {
        padding: 18px 22px;
    }

    .privacy-card .card-header h3 {
        font-size: 19px;
    }

    .privacy-card .card-content {
        padding: 22px;
    }

    .privacy-card .card-content p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .privacy-list {
        margin: 16px 0;
    }

    .privacy-list li {
        padding: 12px 0;
        font-size: 13px;
        gap: 12px;
    }

    .list-icon {
        font-size: 18px;
        min-width: 24px;
    }

    .important-note {
        font-size: 13px !important;
        padding: 14px;
        margin: 16px 0 0 0 !important;
    }

    .contact-info {
        padding: 14px;
    }

    .contact-info p {
        font-size: 13px;
        margin: 8px 0;
    }

    .policy-footer {
        font-size: 13px;
        margin-top: 35px;
        padding-top: 18px;
    }
}

@media screen and (min-width: 1024px) {
    .privacy {
        max-width: 1000px;
        padding: 40px 30px;
    }

    .privacy-header {
        padding: 50px 40px;
        margin-bottom: 40px;
    }

    .privacy-header h1 {
        font-size: 42px;
    }

    .privacy-intro {
        font-size: 16px;
    }

    .privacy-content > p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .privacy-card {
        margin-bottom: 26px;
        border-left: 5px solid #4CAF50;
    }

    .privacy-card .card-header {
        padding: 20px 25px;
    }

    .privacy-card .card-header h3 {
        font-size: 21px;
    }

    .privacy-card .card-content {
        padding: 25px;
    }

    .privacy-card .card-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .privacy-list {
        margin: 18px 0;
    }

    .privacy-list li {
        padding: 14px 0;
        font-size: 14px;
        gap: 14px;
    }

    .list-icon {
        font-size: 20px;
        min-width: 26px;
    }

    .important-note {
        font-size: 14px !important;
        padding: 16px;
    }

    .contact-info {
        padding: 16px;
    }

    .contact-info p {
        font-size: 14px;
        margin: 10px 0;
    }
}

/* Responsive Terms */
@media screen and (min-width: 768px) {
    .terms {
        max-width: 1000px;
    }

    .terms-header {
        padding: 50px 40px;
    }

    .terms-header h1 {
        font-size: 42px;
    }

    .partner-header h2 {
        font-size: 38px;
    }

    .partner-agreement {
        padding: 40px;
    }

    .agreement-list li {
        margin: 20px 0;
        padding: 15px;
        font-size: 16px;
    }

    .terms-card {
        margin-bottom: 30px;
    }

    .card-content {
        padding: 30px;
    }

    .restriction-list {
        padding: 20px;
    }

    .restriction-list li {
        padding: 10px 0 10px 30px;
        font-size: 15px;
    }

    .terms-content > p {
        font-size: 16px;
    }
}

@media screen and (min-width: 1200px) {
    .terms {
        max-width: 1100px;
    }

    .terms-header {
        padding: 60px 50px;
    }

    .terms-header h1 {
        font-size: 48px;
    }

    .partner-header {
        margin-bottom: 50px;
    }

    .partner-header h2 {
        font-size: 44px;
    }

    .partner-intro {
        font-size: 17px;
    }

    .partner-agreement {
        padding: 50px;
    }

    .agreement-list li {
        margin: 22px 0;
        padding: 18px;
        font-size: 16px;
    }

    .agreement-emoji {
        font-size: 20px;
    }

    .terms-card .card-header h3 {
        font-size: 22px;
    }

    .card-content {
        padding: 35px;
    }
}





/* Footer styles */

footer {
    font-size: 11px;
    position: static;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding-bottom: 5px;
    margin-top: 30px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    border-top: 2px solid rgba(255, 159, 67, 0.2);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF9F43, transparent);
    opacity: 0.6;
}

.bottomNav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 8px;
    list-style: none;
    margin: 0;
}

.bottomNav li {
    margin: 0;
    padding: 0;
}

.bottomNav a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid transparent;
    display: inline-block;
}

.bottomNav a:hover {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.2), rgba(255, 107, 107, 0.2));
    color: #FFD700;
    border-color: rgba(255, 159, 67, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 159, 67, 0.2);
}

footer p {
    font-size: 10px;
    margin: 4px 0;
    color: #bdc3c7;
    text-align: center;
    letter-spacing: 0.3px;
    padding: 0 10px;
}

/* Hide hr elements in footer */
footer hr {
    display: none;
}

/* Responsive Design - Desktop */
@media screen and (min-width: 600px) {
    .mainArea {
        margin-bottom: 0;
    }

    /* Header */
    header {
        padding: 14px 30px;
    }

    .navigationMenu ul {
        gap: 25px;
        font-size: 14px;
    }

    .navigationMenu a {
        padding: 8px 14px;
    }

    .logo {
        font-size: 20px;
    }

    .logo h3 {
        font-size: 18px;
    }

    .logo img {
        height: 42px !important;
    }

    /* Footer */
    footer {
        padding-bottom: 8px;
    }

    .bottomNav {
        gap: 16px;
        padding: 12px 15px;
    }

    .bottomNav a {
        font-size: 13px;
        padding: 7px 15px;
    }

    footer p {
        font-size: 11px;
        margin: 6px 0;
    }

    body {
        font-size: 16px;
    }

    h2 {
        font-size: 24px;
    }

    /* Header */
    header {
        padding: 15px 40px;
    }

    .navigationMenu ul {
        gap: 30px;
        font-size: 15px;
    }

    .logo h3 {
        font-size: 20px;
    }

    .logo img {
        height: 45px !important;
    }

    /* Main content */
    .mainArea {
        margin-bottom: 0;
    }

    .topPara {
        padding: 60px 40px;
        min-height: 350px;
        background-position: right center;
    }

    .topPara h1 {
        width: 60%;
        font-size: 42px;
        margin: 15px 0;
    }

    .topPara p {
        font-size: 18px;
        max-width: 70%;
        padding: 15px;
    }

    .para-2 {
        margin: 60px 0;
        padding: 50px 40px;
    }

    .onboarding-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .onboarding-content h2 {
        font-size: 32px;
    }

    .onboarding-intro {
        font-size: 18px;
    }

    .centered {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .ctaButton {
        padding: 12px 30px;
        font-size: 16px;
        margin: 15px 0;
    }

    /* On-boarding section */
    .para-2 {
        padding: 50px 40px;
    }

    .onboarding-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .cta-text {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .join-btn {
        padding: 14px 40px !important;
        font-size: 16px !important;
        letter-spacing: 1px;
    }

    /* Services section */
    .para-3 {
        padding: 60px 40px;
    }

    .services-header h2 {
        font-size: 36px;
    }

    .services-subtitle {
        font-size: 17px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
        min-height: 180px;
    }

    .service-icon {
        font-size: 60px;
    }

    .service-name {
        font-size: 18px;
    }

    .service-desc {
        font-size: 13px;
    }

    /* Footer */
    footer {
        font-size: 14px;
    }

    .bottomNav {
        gap: 30px;
        padding: 10px 0;
    }

    footer p {
        font-size: 12px;
    }

    /* Forms */
    .joinForm label, .joinForm input, .joinForm textarea {
        font-size: 14px;
    }

    .submitButton {
        font-size: 15px;
        padding: 12px 30px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .working-hours-entry .form-row {
        grid-template-columns: 1fr 1fr auto;
        align-items: flex-end;
    }

    .form-container {
        padding: 40px;
        max-width: 800px;
    }

    /* Contact, About, Terms, Privacy */
    .contactUs, .aboutUs, .terms, .privacy {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 40px;
    }
}

/* Responsive Design - Large Desktop */
@media screen and (min-width: 768px) {
    .mainArea {
        margin-bottom: 0;
    }

    /* Header */
    header {
        padding: 16px 40px;
    }

    .navigationMenu ul {
        gap: 32px;
        font-size: 15px;
    }

    .navigationMenu a {
        padding: 9px 16px;
    }

    .logo {
        font-size: 22px;
        gap: 10px;
    }

    .logo h3 {
        font-size: 20px;
    }

    .logo img {
        height: 46px !important;
    }

    /* Footer */
    footer {
        padding-bottom: 10px;
    }

    .bottomNav {
        gap: 20px;
        padding: 14px 20px;
    }

    .bottomNav a {
        font-size: 14px;
        padding: 8px 16px;
    }

    footer p {
        font-size: 12px;
        margin: 8px 0;
    }
}

@media screen and (min-width: 1200px) {
    .mainArea {
        margin-bottom: 0;
    }

    /* Header */
    header {
        padding: 18px 60px;
    }

    .navigationMenu ul {
        gap: 40px;
        font-size: 16px;
    }

    .navigationMenu a {
        padding: 10px 18px;
        font-size: 15px;
    }

    .logo {
        font-size: 24px;
        gap: 12px;
    }

    .logo h3 {
        font-size: 22px;
    }

    .logo img {
        height: 50px !important;
    }

    /* Footer */
    footer {
        padding-bottom: 12px;
    }

    .bottomNav {
        gap: 24px;
        padding: 16px 30px;
    }

    .bottomNav a {
        font-size: 15px;
        padding: 9px 18px;
    }

    footer p {
        font-size: 13px;
        margin: 10px 0;
    }
    .topPara {
        padding: 80px 60px;
        min-height: 400px;
    }

    .topPara h1 {
        font-size: 52px;
    }

    .topPara p {
        font-size: 20px;
    }

    header {
        padding: 15px 60px;
    }
}/* ============================================
   SERVICE PROVIDER LISTING PAGE STYLES
   ============================================ */

/* Listing Page Specific Styles */
.listing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-header h1 {
    font-family: "BBH Hegarty", sans-serif;
    font-size: 42px;
    margin: 0 0 12px 0;
    color: #333;
}

.page-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.search-filter-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* Search Bar Layout */
.search-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto auto;
    gap: 12px;
    align-items: end;
}

/* Search Input Groups */
.search-group {
    display: flex;
    flex-direction: column;
}

.search-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #FAFAFA;
    color: #333;
    appearance: none;
    cursor: pointer;
}

.search-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' 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 12px center;
    background-size: 20px;
    padding-right: 45px;
}

.search-group input::placeholder {
    color: #999;
    font-size: 15px;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: #FF9F43;
    box-shadow: 0 0 0 4px rgba(255, 159, 67, 0.15);
    background: white;
}

.search-group input:hover,
.search-group select:hover {
    border-color: #FF9F43;
    background: white;
}

/* Search Buttons */
.btn-search,
.btn-clear {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Outfit", sans-serif;
    border: 2px solid transparent;
    white-space: nowrap;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.btn-search {
    background: linear-gradient(135deg, #FF9F43 0%, #FF6B6B 100%);
    color: white;
    min-width: 140px;
    font-weight: 600;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.5);
}

.btn-search:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 159, 67, 0.4);
}

.btn-clear {
    background: white;
    color: #666;
    border-color: #E0E0E0;
    text-decoration: none;
    min-width: 140px;
    padding: 14px 32px;
}

.btn-clear:hover {
    border-color: #FF6B6B;
    color: #FF6B6B;
    background: #FFF5F5;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.btn-clear:active {
    transform: translateY(0);
}

.btn-book {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Outfit", sans-serif;
    border: 2px solid transparent;
    white-space: nowrap;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    box-sizing: border-box;
    text-decoration: none;
    min-width: 140px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-book:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F0F0F0;
}

.results-count {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.results-count span {
    color: #FF9F43;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.provider-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #FF9F43;
}

.provider-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F5F5F5;
}

.business-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
    font-family: "BBH Hegarty", sans-serif;
}

.owner-name {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.service-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.service-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, #FFE5D0 0%, #FFD4B8 100%);
    color: #FF6B6B;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.provider-info {
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.info-row strong {
    color: #333;
    min-width: 80px;
}

.provider-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
    max-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.provider-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 2px solid #F5F5F5;
}

.experience-badge {
    padding: 8px 16px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1976D2;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.experience-badge:hover {
    background: linear-gradient(135deg, #BBDEFB 0%, #90CAF9 100%);
    color: #0D47A1;
}

/* Provider Details Page */
.provider-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.provider-hero {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.provider-hero h1 {
    margin: 0 0 6px 0;
    font-size: 28px;
    color: #333;
}

.provider-owner {
    margin: 0 0 12px 0;
    color: #666;
}

.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.provider-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.provider-card-panel {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.provider-card-panel h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #333;
}

.detail-row {
    margin: 6px 0;
    color: #555;
}

.price-list,
.hours-list {
    margin: 0;
    padding-left: 18px;
    color: #555;
}

.price-list li,
.hours-list li {
    margin: 6px 0;
}

.muted {
    color: #777;
    margin: 0;
}

.off-days {
    margin-top: 10px;
    color: #555;
}

.provider-description-panel {
    margin-bottom: 24px;
}

.provider-gallery .provider-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.provider-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .provider-hero {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-book,
    .btn-clear {
        padding: 12px 24px;
        font-size: 14px;
        height: 46px;
        min-width: 120px;
    }
}

.btn-contact {
    padding: 10px 20px;
    background: linear-gradient(135deg, #FF9F43 0%, #FF6B6B 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.4);
    color: white;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.no-results h2 {
    font-family: "BBH Hegarty", sans-serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 12px;
}

.no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.error-message {
    padding: 20px;
    background: #FFEBEE;
    color: #C62828;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #C62828;
}

/* Listing Page Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .search-bar {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-group:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .btn-search,
    .btn-clear,
    .btn-book {
        width: 100%;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .listing-container {
        padding: 16px;
    }
    
    .search-filter-section {
        padding: 20px;
    }
    
    .search-bar {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .search-group {
        width: 100%;
    }
    
    .search-group label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .search-group input,
    .search-group select {
        padding: 16px 18px;
        font-size: 16px;
        height: 54px;
    }
    
    .btn-search,
    .btn-clear {
        width: 100%;
        height: 54px;
        font-size: 17px;
        padding: 16px 24px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .listing-container {
        padding: 12px;
    }
    
    .search-filter-section {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .search-bar {
        gap: 16px;
    }
    
    .page-header {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .search-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .search-group input,
    .search-group select {
        font-size: 15px;
        padding: 14px 16px;
        height: 50px;
    }
    
    .search-group input::placeholder {
        font-size: 14px;
    }
    
    .btn-search,
    .btn-clear {
        padding: 14px 20px;
        font-size: 16px;
        height: 52px;
    }
    
    .provider-card {
        padding: 16px;
    }
    
    .business-name {
        font-size: 18px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-in-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: #FF6B6B;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.booking-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-in-out;
    padding: 0;
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #F0F0F0;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4C0 100%);
    border-radius: 12px 12px 0 0;
}

.booking-modal-header h2 {
    margin: 0;
    font-size: 22px;
    color: #333;
    font-family: "BBH Hegarty", sans-serif;
}

.booking-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.booking-modal-close:hover {
    color: #FF6B6B;
    transform: scale(1.2);
}

.booking-form {
    padding: 24px;
}

.booking-form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.booking-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    padding: 12px 14px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #FAFAFA;
}

.booking-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' 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 12px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.booking-form-group select option {
    padding: 10px 12px;
    background-color: white;
    color: #333;
    font-size: 14px;
}

.booking-form-group select option:hover {
    background-color: #F0F0F0;
}

.booking-form-group input:hover,
.booking-form-group select:hover {
    border-color: #FF9F43;
    background-color: #FFF9F5;
    box-shadow: 0 2px 8px rgba(255, 159, 67, 0.1);
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.btn-submit-booking {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Outfit", sans-serif;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-submit-booking:active {
    transform: translateY(0);
}

/* Time Picker Dropdown Styles */
.time-picker-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.time-picker-dropdown select {
    flex: 1;
    min-width: 80px;
    background-color: #FAFAFA;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 36px;
    appearance: none;
}

.time-picker-dropdown select:hover {
    border-color: #FF9F43;
    background-color: #FFF9F5;
    box-shadow: 0 2px 8px rgba(255, 159, 67, 0.1);
}

.time-picker-dropdown select:focus {
    outline: none;
    border-color: #FF6B6B;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.time-separator {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    min-width: 12px;
    text-align: center;
}

/* Responsive Time Picker Dropdown */
@media (max-width: 600px) {
    .time-picker-dropdown {
        gap: 6px;
    }

    .time-picker-dropdown select {
        min-width: 70px;
        padding: 10px;
        font-size: 13px;
        padding-right: 32px;
        background-size: 18px;
    }

    .time-separator {
        font-size: 18px;
    }
}