/* ========================================
   RESET & BASE STYLES
   ======================================== */
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1F2A44;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
*/


html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container, 
.section-hero .container,
.section-value-props .container,
.section-questionnaire .container,
.section-services .container,
.section-platform .container,
.section-benefits .container,
.section-finding-carer .container,
.section-find-carer .container,
.section-how-it-works .container,
.section-carer-profiles .container,
.section-featured-testimonial .container,
.section-faqs .container{
    max-width: 1280px;   
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    overflow-x: hidden; 
    font-family: 'Inter', sans-serif;   /*'Inter', sans-serif;*/
    line-height: 1.5;
    color: #1F2A44;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .container, 
    .section-hero .container,
    .section-value-props .container,
    .section-questionnaire .container,
    .section-services .container,
    .section-platform .container,
    .section-benefits .container,
    .section-finding-carer .container,
    .section-find-carer .container,
    .section-how-it-works .container,
    .section-carer-profiles .container,
    .section-featured-testimonial .container,
    .section-faqs .container {
        padding: 0 20px;
    }
}



/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #1F2A44; /*#1a1a1a*/
    color: #ffffff;
    border-color: #1F2A44;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    background-color: transparent;
    color: #1F2A44;
    border-color: #1F2A44;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

/* ========================================
   HEADER STYLES - COMPLETELY REWRITTEN
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1F2A44;
    background-color: #ffffff;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-icon {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Desktop Navigation */
.nav-primary {
    flex: 1;
    margin-left: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link:hover::after {
    width: 100%;
}

/* Desktop Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.contact-phone {
    text-align: right;
}

.phone-number {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.phone-status {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.signin-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    border: 2px solid #1a1a1a;
    border-radius: 30px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.signin-link:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2.5px;
    background-color: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-panel.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 2001;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: #ffffff;
    flex-shrink: 0;
}

.mobile-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.mobile-menu-close:hover {
    color: #1a1a1a;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 20px 24px;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: #0066cc;
    padding-left: 10px;
}

.mobile-contact {
    padding: 20px 24px 30px 24px;
    border-top: 1px solid #eee;
}

.mobile-phone {
    margin-bottom: 20px;
    text-align: left;
}

.mobile-phone .phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.mobile-phone .phone-status {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    display: block;
}

.mobile-signin {
    display: block;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    border: 2px solid #1a1a1a;
    border-radius: 30px;
    text-align: center;
    transition: all 0.2s ease;
}

.mobile-signin:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Body padding to account for fixed header */
body {
    padding-top: 80px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet Landscape (1024px - 1280px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 14px 24px;
    }
    
    .nav-list {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .header-contact {
        gap: 20px;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .signin-link {
        font-size: 14px;
        padding: 6px 16px;
    }
}

/* Tablet and Mobile (1023px and below) */
@media (max-width: 1023px) {
    .nav-primary {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    body {
        padding-top: 70px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .header-container {
        padding: 12px 20px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    
    .mobile-menu-content {
        width: 85%;
    }
    
    .mobile-nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
    
    body {
        padding-top: 65px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 10px 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
    }
    
    body {
        padding-top: 60px;
    }
}




















































/* ========================================
   SECTION 1: HERO
   ======================================== */
.section-hero {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 0 80px 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trustpilot-rating {
        justify-content: center;
    }
}

/* ========================================
   SECTION 2: VALUE PROPS
   ======================================== */
/*.section-value-props {
    padding: 80px 0;
    background-color: #ffffff;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-prop-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.value-prop-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}*/

/* SECTION 2: Value Props Grid with Icons & Borders */
.section-value-props {
    padding: 80px 0;
    background-color: #ffffff;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-prop-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

.value-prop-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-prop-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F2A44;
}

.value-prop-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

@media (max-width: 1023px) {
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .value-props-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTION 3: 10-STEP QUESTIONNAIRE
   ======================================== */
.section-questionnaire {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.questionnaire-header {
    text-align: center;
    margin-bottom: 40px;
}

.questionnaire-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.questionnaire-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.questionnaire-start-container {
    text-align: center;
    padding: 40px 0;
}

.start-questionnaire-btn {
    font-size: 18px;
    padding: 16px 40px;
}

.questionnaire-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.4s ease;
}

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

.progress-wrapper {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.progress-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.step-counter {
    font-size: 14px;
    font-weight: 600;
    color: #1F2A44;
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 20px;
}

.progress-bar-container {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #1F2A44;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.form-step-q {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title-q {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

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

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1F2A44;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
}

.error-message {
    display: block;
    font-size: 12px;
    color: #dc3545;
    margin-top: 6px;
}

.checkbox-group-q,
.radio-group-q {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkbox-label-q,
.radio-label-q {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #444;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.checkbox-label-q:hover,
.radio-label-q:hover {
    background: #f0f0f0;
}

.checkbox-label-q input,
.radio-label-q input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1F2A44;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.days-grid .checkbox-label-q {
    justify-content: center;
    text-align: center;
}

.form-section {
    margin-bottom: 24px;
}

.form-section-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    color: #333;
}

.consent-group {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
}

.consent-group .checkbox-label-q {
    background: transparent;
    padding: 8px 0;
}

.form-navigation-q {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.form-navigation-q .btn {
    flex: 1;
}

.questionnaire-success {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.questionnaire-success h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.questionnaire-success p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ========================================
   SECTION 4: CARE SERVICES
   ======================================== */
/*.section-services {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-title {
    font-size: 24px;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 0 0 32px 0;
}

.service-features li {
    margin-bottom: 20px;
}

.service-features strong {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}

.service-features span {
    display: block;
    font-size: 14px;
    color: #666666;
}

.service-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    color: #1F2A44;
    border: 1.5px solid #1F2A44;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-outline:hover {
    background-color: #1F2A44;
    color: #ffffff;
}

.btn-link {
    background-color: transparent;
    color: #1F2A44;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.btn-link:hover {
    color: #0066cc;
    transform: translateX(4px);
}*/

/* ========================================
   SECTION 5: PLATFORM
   ======================================== */
/*.section-platform {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.platform-header {
    text-align: center;
    margin-bottom: 56px;
}

.platform-title {
    font-size: 42px;
    max-width: 900px;
    margin: 0 auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.platform-left, .platform-right {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.person-card {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.person-name {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-item-platform {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #1F2A44;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 14px;
    color: #555555;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}
*/


/* SECTION 5: Carousel */
.section-carousel {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.carousel-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.carousel-image-wrapper {
    position: relative;
    display: inline-block;
}

.carousel-main-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.phone-frame-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: auto;
}

.phone-frame-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-right {
    flex: 1;
}

.carousel-heading {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #1F2A44;
}

.carousel-subheading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.carousel-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.carousel-points {
    list-style: none;
    margin-bottom: 32px;
}

.carousel-points li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.carousel-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 16px;
}

.carousel-btn {
    margin-bottom: 32px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 6px;
    background: #1F2A44;
}

.dot:hover {
    background: #1F2A44;
}

@media (max-width: 1023px) {
    .carousel-container {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-right {
        text-align: center;
    }
    
    .carousel-points {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .carousel-dots {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .carousel-heading {
        font-size: 28px;
    }
    
    .carousel-subheading {
        font-size: 20px;
    }
    
    .carousel-main-image {
        max-width: 320px;
    }
}


/* ========================================
   SECTION 6: BENEFITS
   ======================================== */
.section-benefits {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefits-header {
    text-align: center;
    margin-bottom: 56px;
}

.benefits-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.benefits-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border: 1px solid #e8e8e8;
}

.benefit-card-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.benefits-footer {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.footer-tag {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.footer-tag::before {
    content: "•";
    position: absolute;
    left: 0;
}

.footer-tag:first-child::before {
    display: none;
}

.footer-tag:first-child {
    padding-left: 0;
}

/* ========================================
   SECTION 7: FINDING companion
   ======================================== */
.section-finding-companion {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.finding-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px auto;
}

.finding-title {
    font-size: 42px;
    margin-bottom: 24px;
}

.finding-description {
    font-size: 17px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 32px;
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 17px;
}

.testimonial-author span {
    font-size: 14px;
    color: #888888;
}

/* ========================================
   SECTION 8: FIND companion SEARCH
   ======================================== */
/*.section-find-companion {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.find-companion-content {
    max-width: 700px;
    margin: 0 auto;
}

.find-companion-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.find-companion-stat {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

.search-input-wrapper {
    display: flex;
    gap: 12px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 60px;
    padding: 4px;
    margin-bottom: 32px;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-btn {
    background-color: #1F2A44;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.trustpilot-mini {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background-color: #f8f9fa;
    border-radius: 50px;
}*/

/* ========================================
   SECTION 9: HOW IT WORKS
   ======================================== */
.section-how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 56px;
}

.how-it-works-title {
    font-size: 42px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.process-step {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.step-number-large {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0.8;
}

.step-heading {
    font-size: 24px;
    margin-bottom: 16px;
}

/* ========================================
   SECTION 10: companion PROFILES
   ======================================== */
.section-companion-profiles {
    padding: 80px 0;
    background-color: #ffffff;
}

.companion-profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.companion-profile-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.companion-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.companion-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.companion-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1F2A44 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.companion-name {
    font-size: 20px;
    margin-bottom: 4px;
}

.companion-location {
    font-size: 14px;
    color: #888888;
}

.companion-rating {
    margin-bottom: 16px;
}

.companion-testimonial {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
}

/* ========================================
   SECTION 11: FEATURED TESTIMONIAL
   ======================================== */
.section-featured-testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.featured-testimonial-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-icon {
    font-size: 80px;
    font-weight: 800;
    color: #1F2A44;
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.featured-quote {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 0 28px 0;
    letter-spacing: -0.3px;
}

.featured-author {
    font-size: 18px;
    color: #666666;
}

.featured-author strong {
    color: #1F2A44;
}

/* ========================================
   SECTION 12: FAQS
   ======================================== */
.section-faqs {
    padding: 80px 0;
    background-color: #ffffff;
}

.faqs-header {
    text-align: center;
    margin-bottom: 56px;
}

.faqs-title {
    font-size: 42px;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e8e8e8;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    font-size: 24px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

/* ========================================
   SECTION 13: FOOTER
   ======================================== */
.site-footer {
    background-color: #1F2A44;
    color: #ffffff;
    padding: 60px 0 32px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-icon {
    background-color: #ffffff;
    color: #1F2A44;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-contact-item strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-contact-item a {
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-legal-text {
    font-size: 13px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 28px;
}

.awards-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.award-number {
    font-size: 28px;
    font-weight: 800;
}

.award-text {
    font-size: 11px;
    line-height: 1.3;
    color: #cccccc;
    text-transform: uppercase;
}

.award-company {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.award-winner {
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 13px;
    color: #cccccc;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-copyright p {
    font-size: 13px;
    color: #999999;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1023px) {
    .container { padding: 0 24px; }
    .hero-title, .platform-title, .benefits-title, .finding-title, .find-companion-title, .how-it-works-title, .faqs-title, .questionnaire-title { font-size: 34px; }
    .value-props-grid, .services-grid, .benefits-grid, .testimonials-grid, .steps-container { gap: 24px; }
    .companion-profiles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { gap: 32px; }
    .form-row { gap: 16px; }
}

@media (max-width: 767px) {
    .container { padding: 0 20px; }
    .nav-primary, .header-contact { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-title, .platform-title, .benefits-title, .finding-title, .find-companion-title, .how-it-works-title, .faqs-title, .questionnaire-title, .section-title { font-size: 28px; }
    .value-props-grid, .services-grid, .platform-grid, .benefits-grid, .testimonials-grid, .steps-container, .companion-profiles-grid, .footer-grid { grid-template-columns: 1fr; }
    .search-input-wrapper { flex-direction: column; border-radius: 20px; }
    .search-input { border: 2px solid #e0e0e0; border-radius: 60px; }
    .benefits-footer { flex-direction: column; align-items: center; }
    .footer-tag::before { display: none; }
    .footer-tag { padding-left: 0; }
    .featured-quote { font-size: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .questionnaire-form-container { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .step-title-q { font-size: 20px; margin-bottom: 20px; }
    .days-grid { grid-template-columns: repeat(2, 1fr); }
    .form-navigation-q { flex-direction: column; }
    .progress-steps-indicator { flex-direction: column; align-items: stretch; }
    .progress-bar-container { width: 100%; }
}





/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.section-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
    min-height: calc(100vh - 200px);
}

.contact-header {
    text-align: center;
    margin-bottom: 56px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Container */
.contact-form-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.contact-form-container .form-group {
    margin-bottom: 24px;
}

.contact-form-container label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.contact-form-container input.error,
.contact-form-container textarea.error {
    border-color: #dc3545;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 16px;
}

/* Success Popup */
.contact-success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 32px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.contact-success-popup .success-icon {
    width: 60px;
    height: 60px;
    background: #4caf50;
    color: white;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-success-popup h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-success-popup p {
    color: #666;
    font-size: 15px;
}

/* Contact Info Container */
.contact-info-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-details {
    flex: 1;
}

.info-details strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.info-details a,
.info-details span {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-details a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 4px;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

/* Map Modal */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
}

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

.map-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.map-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.map-modal-header h3 {
    font-size: 20px;
    margin: 0;
}

.map-modal-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.map-modal-close:hover {
    color: #1a1a1a;
}

.map-modal-body {
    padding: 0;
}

.map-modal-body iframe {
    display: block;
}

/* Responsive */
@media (max-width: 1023px) {
    .contact-wrapper {
        gap: 32px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .section-contact {
        padding: 48px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 15px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 24px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
}









/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Section 1: Services Hero (Text Left, Image Right) */
.section-services-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.services-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-hero-content {
    max-width: 600px;
}

.services-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.services-hero-list {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.services-hero-list li {
    font-size: 16px;
    color: #333;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-hero-contact {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.services-hero-contact a {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
}

.services-hero-contact a:hover {
    text-decoration: underline;
}

.services-hero-btn {
    padding: 14px 32px;
    font-size: 16px;
}

.services-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.services-img:hover {
    transform: scale(1.02);
}

/* Section 2: Services Features (Image Left, Text Right) */
.section-services-features {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-features-content {
    max-width: 600px;
}

.services-features-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-features-description {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.services-features-btn {
    padding: 14px 32px;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE STYLES FOR SERVICES PAGE
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .services-hero-title {
        font-size: 36px;
    }
    
    .services-features-title {
        font-size: 32px;
    }
    
    .services-hero-wrapper,
    .services-features-wrapper {
        gap: 40px;
    }
    
    .services-hero-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .services-features-grid {
        gap: 18px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .section-services-hero,
    .section-services-features {
        padding: 48px 0;
    }
    
    .services-hero-wrapper,
    .services-features-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-hero-wrapper {
        flex-direction: column;
    }
    
    .services-features-wrapper {
        flex-direction: column-reverse;
    }
    
    .services-hero-title {
        font-size: 28px;
        text-align: center;
    }
    
    .services-features-title {
        font-size: 26px;
        text-align: center;
    }
    
    .services-hero-description,
    .services-features-description {
        font-size: 15px;
        text-align: center;
    }
    
    .services-hero-content,
    .services-features-content {
        text-align: center;
        max-width: 100%;
    }
    
    .services-hero-list {
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-hero-list li {
        font-size: 14px;
        justify-content: center;
    }
    
    .services-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }
    
    .feature-item {
        justify-content: center;
        text-align: left;
    }
    
    .services-hero-contact {
        font-size: 14px;
        text-align: center;
    }
    
    .services-hero-btn,
    .services-features-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    .services-img {
        max-width: 90%;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .services-hero-title {
        font-size: 24px;
    }
    
    .services-features-title {
        font-size: 22px;
    }
    
    .feature-icon {
        font-size: 28px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
}





/* ========================================
   HOW IT WORKS PAGE STYLES
   ======================================== */

/* Section 1: Hero (Images Left, Text Right) */
.section-howitworks-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.howitworks-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Grid Styles */
.image-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.howitworks-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howitworks-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Content Styles */
.howitworks-hero-content {
    max-width: 600px;
}

.howitworks-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.howitworks-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

/* Benefits List */
.benefits-list {
    margin-bottom: 36px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.benefit-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.howitworks-hero-btn {
    padding: 14px 32px;
    font-size: 16px;
}

/* Section 2: Steps (Text Left, Images Right) */
.section-howitworks-steps {
    padding: 80px 0;
    background-color: #ffffff;
}

.howitworks-steps-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.howitworks-steps-content {
    max-width: 600px;
}

.howitworks-steps-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.howitworks-steps-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Steps List */
.steps-list {
    margin-bottom: 36px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    opacity: 0.7;
    min-width: 60px;
}

.step-details h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-details p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.howitworks-steps-btn {
    padding: 14px 32px;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE STYLES FOR HOW IT WORKS PAGE
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .section-howitworks-hero,
    .section-howitworks-steps {
        padding: 60px 0;
    }
    
    .howitworks-hero-title {
        font-size: 36px;
    }
    
    .howitworks-steps-title {
        font-size: 34px;
    }
    
    .howitworks-hero-wrapper,
    .howitworks-steps-wrapper {
        gap: 40px;
    }
    
    .grid-3 {
        gap: 15px;
    }
    
    .benefit-item {
        margin-bottom: 22px;
    }
    
    .benefit-icon {
        font-size: 32px;
    }
    
    .benefit-text h3,
    .step-details h3 {
        font-size: 18px;
    }
    
    .step-number {
        font-size: 28px;
        min-width: 50px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .section-howitworks-hero,
    .section-howitworks-steps {
        padding: 48px 0;
    }
    
    .howitworks-hero-wrapper,
    .howitworks-steps-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Section 1: Images on top, text below */
    .howitworks-hero-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    /* Section 2: Text on top, images below */
    .howitworks-steps-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .howitworks-steps-images {
        order: 2;
    }
    
    .howitworks-steps-content {
        order: 1;
    }
    
    .howitworks-hero-title {
        font-size: 28px;
        text-align: center;
    }
    
    .howitworks-steps-title {
        font-size: 28px;
        text-align: center;
    }
    
    .howitworks-hero-subtitle,
    .howitworks-steps-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .howitworks-hero-content,
    .howitworks-steps-content {
        text-align: center;
        max-width: 100%;
    }
    
    .benefit-item {
        text-align: left;
    }
    
    .step-item {
        text-align: left;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .howitworks-img {
        max-width: 100%;
    }
    
    .benefit-icon {
        font-size: 30px;
    }
    
    .benefit-text h3,
    .step-details h3 {
        font-size: 17px;
    }
    
    .benefit-text p,
    .step-details p {
        font-size: 14px;
    }
    
    .step-number {
        font-size: 24px;
        min-width: 45px;
    }
    
    .howitworks-hero-btn,
    .howitworks-steps-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .howitworks-hero-title {
        font-size: 24px;
    }
    
    .howitworks-steps-title {
        font-size: 24px;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 8px;
    }
    
    .benefit-text h3,
    .step-details h3 {
        text-align: center;
    }
    
    .benefit-text p,
    .step-details p {
        text-align: center;
    }
}





/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Section 1: About Hero (Text Left, Images Right) */
.section-about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    max-width: 600px;
}

.about-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1a1a1a;
    background: rgba(26, 26, 26, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

/* Features List */
.about-features-list {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
}

.about-features-list li {
    font-size: 15px;
    color: #444;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stats Section */
.about-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.stat-label {
    font-size: 13px;
    color: #666;
}

.about-hero-btn {
    padding: 14px 32px;
    font-size: 16px;
}

/* Image Grid */
.about-hero-images,
.about-mission-images {
    display: flex;
    justify-content: center;
}

.image-grid-about {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.grid-3-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Section 2: About Mission (Images Left, Text Right) */
.section-about-mission {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-mission-content {
    max-width: 600px;
}

.about-mission-title {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-mission-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

.about-values-list {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
}

.about-values-list li {
    font-size: 15px;
    color: #444;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-stats-secondary {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.about-mission-btn {
    padding: 14px 32px;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE STYLES FOR ABOUT PAGE
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .section-about-hero,
    .section-about-mission {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 35px;
    }
    
    .about-mission-title {
        font-size: 38px;
    }
    
    .about-hero-wrapper,
    .about-mission-wrapper {
        gap: 40px;
    }
    
    .grid-3-about {
        gap: 15px;
    }
    
    .about-stats,
    .about-stats-secondary {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .section-about-hero,
    .section-about-mission {
        padding: 48px 0;
    }
    
    .about-hero-wrapper,
    .about-mission-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Section 1: Text on top, images below */
    .about-hero-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    /* Section 2: Text on top, images below */
    .about-mission-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .about-mission-images {
        order: 2;
    }
    
    .about-mission-content {
        order: 1;
    }
    
    .about-hero-title {
        font-size: 30px;
        text-align: center;
    }
    
    .about-mission-title {
        font-size: 32px;
        text-align: center;
    }
    
    .about-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-hero-description,
    .about-mission-description {
        font-size: 15px;
        text-align: center;
    }
    
    .about-hero-content,
    .about-mission-content {
        text-align: center;
        max-width: 100%;
    }
    
    .about-features-list,
    .about-values-list {
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-features-list li,
    .about-values-list li {
        font-size: 14px;
        justify-content: flex-start;
    }
    
    .about-stats,
    .about-stats-secondary {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .grid-3-about {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-img {
        max-width: 100%;
    }
    
    .about-hero-btn,
    .about-mission-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 25px;
    }
    
    .about-mission-title {
        font-size: 25px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .about-features-list li,
    .about-values-list li {
        font-size: 13px;
    }
}





/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Blog Header Section */
.section-blog-header {
    padding: 60px 0 40px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
    text-align: center;
}

.blog-header-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.blog-header-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Categories Section */
.section-blog-categories {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.blog-categories-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-tag {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: #f8f9fa;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.category-tag.active {
    background: #1a1a1a;
    color: #ffffff;
}

/* Blog Posts Grid */
.section-blog-posts {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-card-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.post-date {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* Load More Button */
.blog-load-more {
    text-align: center;
}

.load-more-btn {
    padding: 12px 32px;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE STYLES FOR BLOG PAGE
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .blog-header-title {
        font-size: 44px;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
    }
    
    .category-tag {
        padding: 6px 20px;
        font-size: 13px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .section-blog-header {
        padding: 40px 0 30px 0;
    }
    
    .blog-header-title {
        font-size: 32px;
    }
    
    .blog-header-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .section-blog-categories {
        padding: 20px 0;
    }
    
    .blog-categories-wrapper {
        gap: 12px;
        padding: 0 16px;
    }
    
    .category-tag {
        padding: 5px 16px;
        font-size: 12px;
    }
    
    .section-blog-posts {
        padding: 40px 0 60px 0;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .load-more-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .blog-header-title {
        font-size: 28px;
    }
    
    .category-tag {
        padding: 4px 14px;
        font-size: 11px;
    }
    
    .blog-card-title {
        font-size: 17px;
    }
    
    .blog-author {
        gap: 10px;
    }
    
    .author-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .post-date {
        font-size: 11px;
    }
}







/* ========================================
   BECOME A COMPANION FORM STYLES
   ======================================== */
.section-companion-form {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #fff9f0 100%);
    min-height: calc(100vh - 200px);
}

.companion-header {
    text-align: center;
    margin-bottom: 48px;
}

.companion-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.companion-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.companion-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Progress Indicator */
.progress-wrapper {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.progress-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.step-counter {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 20px;
}

.progress-bar-container {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #1a1a1a;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.error-message {
    display: block;
    font-size: 12px;
    color: #dc3545;
    margin-top: 6px;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #444;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.radio-label:hover,
.checkbox-label:hover {
    background: #e8e8e8;
}

.radio-label input,
.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a1a1a;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.days-grid .checkbox-label {
    justify-content: center;
}

/* Companion Name Display */
.companion-name-display {
    margin-top: 20px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    color: #1a1a1a;
    border-left: 4px solid #1a1a1a;
}

/* Consent Group */
.consent-group {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.consent-group .checkbox-label {
    background: transparent;
    padding: 8px 0;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.form-navigation .btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 16px;
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-popup-content {
    background: white;
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: slideIn 0.3s ease;
}

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

.success-icon {
    width: 70px;
    height: 70px;
    background: #4caf50;
    color: white;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-popup-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-popup-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.success-progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

.success-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4caf50;
    animation: progressShrink 10s linear forwards;
}

@keyframes progressShrink {
    from { width: 100%; }
    to { width: 0%; }
}

/* File Upload */
.form-group input[type="file"] {
    padding: 10px;
    background: #f8f9fa;
    border: 1.5px dashed #ccc;
}

.form-group input[type="file"]:hover {
    border-color: #1a1a1a;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 1023px) {
    .companion-title { font-size: 36px; }
    .companion-form-container { padding: 30px; }
    .step-title { font-size: 22px; }
    .days-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .section-companion-form { padding: 40px 0; }
    .companion-title { font-size: 28px; }
    .companion-subtitle { font-size: 15px; }
    .companion-form-container { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .step-title { font-size: 20px; }
    .days-grid { grid-template-columns: repeat(2, 1fr); }
    .form-navigation { flex-direction: column; }
    .progress-steps-indicator { flex-direction: column; align-items: stretch; }
    .progress-bar-container { width: 100%; }
    .success-popup-content { padding: 32px 24px; }
    .success-popup-content h3 { font-size: 22px; }
}








