/* Reset en basis styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Brand Colors - Based on Oppass.nl Logo with Fallbacks */
:root {
    --primary-purple: #7B68BE;
    --primary-coral: #FF8A6D;
    --primary-yellow: #FFE066;
    --accent-blue: #6B8BC3;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --text-medium: #6c757d;
    --bg-cream: #FFF9F0;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-light: #e9ecef;
    --primary-color: #7B68BE;
}

/* Fallback colors for browsers that don't support CSS custom properties */
html {
    color: #2c3e50;
    background-color: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Ubuntu', 'Liberation Sans', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    line-height: 1.6;
    color: var(--text-dark);
    color: #2c3e50;
    background-color: var(--white);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Container responsive adjustments */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 24px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 16px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Header en Navigatie */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
}

/* CTA Button in Navigation */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary-coral) 0%, #FF6B4A 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 109, 0.3);
    white-space: nowrap;
    margin-left: 1rem;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 109, 0.4);
    background: linear-gradient(135deg, #FF6B4A 0%, #FF5A38 100%);
}

/* Hamburger menu (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

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

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

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

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

/* Main content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-coral) 0%, #FF6B4A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 138, 109, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF5A38 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 109, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header.careers {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 4rem 0;
}

.services {
    background: #f8f9fa;
}

.services-grid,
.features-grid,
.values-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card,
.feature,
.value-card,
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover,
.feature:hover,
.value-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
}

.service-image,
.value-image,
.benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Stats */
.stats {
    background: #2c3e50;
    color: white;
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    background: #fff;
    padding: 4rem 0;
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews {
    background: #f8f9fa;
    padding: 4rem 0;
}

.reviews-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: #e74c3c;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.review-info strong {
    color: #2c3e50;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.review-info span {
    color: #666;
    font-size: 0.9rem;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-stat {
    text-align: center;
    padding: 1rem;
}

.review-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.review-stat .stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About page specific */
.about-logo-section {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.about-logo {
    height: 120px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.story-timeline,
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item,
.timeline-step {
    background: #f8f9fa;
    padding: 2rem;
    margin: 1rem 0;
    border-left: 4px solid #e74c3c;
    border-radius: 5px;
}

.timeline-item h3,
.timeline-step h3 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-image-banner {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.contact-method {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-method h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method strong {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Forms */
.contact-form,
.application-form,
.newsletter-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Emergency contact */
.emergency-contact {
    background: #e74c3c;
    color: white;
}

.emergency-box {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
}

.emergency-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Knowledge base */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Tips section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.tip-card ul {
    list-style: none;
    padding-left: 0;
}

.tip-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.age-tips p {
    margin-bottom: 0.5rem;
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

/* Newsletter */
.newsletter-signup {
    background: #f8f9fa;
}

.newsletter-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
}

/* Quality page */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

/* Steps Grid for How It Works */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.step-item {
    opacity: 1;
    transform: translateY(0);
}

.step-content-modern {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr;
    -ms-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-content-modern.reverse {
    grid-template-columns: 1fr 1fr;
}

.step-content-modern.reverse .step-text {
    order: 2;
}

.step-content-modern.reverse .step-image {
    order: 1;
}

/* Wider screen optimizations for steps */
@media (min-width: 969px) {
    .steps-grid {
        gap: 5rem;
        max-width: 100%;
        margin: 3rem auto 0;
    }
    
    .step-content-modern {
        display: block;
        text-align: center;
        max-width: 1000px;
        margin: 0 auto;
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .step-content-modern.reverse {
        display: block;
    }
    
    .step-content-modern.reverse .step-text,
    .step-content-modern.reverse .step-image {
        order: unset;
    }
    
    .step-text {
        max-width: 800px;
        margin: 0 auto 3rem;
        padding: 0;
    }
    
    .step-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .step-number-large {
        margin: 0 auto 2rem;
    }
    
    .step-text h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .step-text p {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .steps-grid {
        gap: 6rem;
    }
    
    .step-content-modern {
        max-width: 1200px;
        padding: 4rem 3rem;
    }
    
    .step-text {
        max-width: 900px;
    }
    
    .step-image {
        max-width: 700px;
    }
    
    .step-text h3 {
        font-size: 2.2rem;
    }
    
    .step-text p {
        font-size: 1.3rem;
    }
}

@media (min-width: 1400px) {
    .steps-grid {
        gap: 7rem;
    }
    
    .step-content-modern {
        max-width: 1400px;
        padding: 5rem 4rem;
    }
    
    .step-text {
        max-width: 1000px;
    }
    
    .step-image {
        max-width: 800px;
    }
    
    .step-text h3 {
        font-size: 2.4rem;
    }
    
    .step-text p {
        font-size: 1.4rem;
    }
}

.step-text {
    padding: 2rem 0;
}

.step-number-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 204, 102, 0.3);
}

.step-item:nth-child(2) .step-number-large {
    background: var(--primary-coral);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 119, 119, 0.3);
}

.step-item:nth-child(3) .step-number-large {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.3);
}

.step-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.step-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.step-image:hover img {
    transform: scale(1.05);
}

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.safety-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.safety-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
}

.safety-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.safety-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

/* CTA Highlight */
.cta-highlight {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cta-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Toggle Section */
.hero-toggle {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -webkit-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -moz-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 6rem 0;
    text-align: center;
    position: relative;
}

.hero-toggle-nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3rem;
    background: var(--white);
    background: #ffffff;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.toggle-link {
    flex: 1;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.toggle-link.active {
    background: #6f42c1;
    background: var(--primary-purple);
    color: #ffffff;
    color: var(--white);
}

.toggle-link:hover:not(.active) {
    background: var(--bg-light);
    color: var(--text-dark);
}

.hero-toggle-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-small-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-large-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.hero-toggle .btn-large {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: 16px 32px;
}

.hero-toggle .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-toggle .stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.hero-toggle .reviews-link {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-toggle .reviews-link:hover {
    color: var(--primary-coral);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #e74c3c;
}

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

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.cert-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.standard-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.standard-item ul {
    list-style: none;
    padding: 0;
}

.standard-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.standard-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.monitoring-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.stats-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.stat:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insurance-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Testimonials */
.testimonials-grid,
.employee-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #e74c3c;
    text-align: right;
}

/* Jobs page */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-type {
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.job-details p {
    margin-bottom: 0.5rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.job-requirements li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.job-apply {
    width: 100%;
    margin-top: 1.5rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.req-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.req-category ul {
    list-style: none;
    padding: 0;
}

.req-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.req-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* ==================== */
/* FAQ Section */
/* ==================== */

.faq {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq h2 {
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(123, 104, 190, 0.1);
}

.faq-question:hover {
    background: rgba(123, 104, 190, 0.05);
}

.faq-question h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    text-align: left;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    background: var(--primary-purple);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary-coral);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--primary-purple);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.footer-section li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== */
/* Registration Modal */
/* ==================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.modal-content {
    background-color: #fff;
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #e74c3c;
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.registration-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.registration-form input[type="text"]:focus,
.registration-form input[type="email"]:focus,
.registration-form input[type="tel"]:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.registration-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.registration-form .checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.registration-form .checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

.registration-form .checkbox-group a {
    color: #e74c3c;
    text-decoration: underline;
}

.registration-form .btn-large {
    width: 100%;
    margin-top: 1rem;
}

/* ==================== */
/* Responsive Design */
/* ==================== */

/* Large Tablets & Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Tablets & iPad (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 720px;
        padding: 0 30px;
    }

    .hero {
        padding: 3rem 0;
        min-height: 50vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .services-grid,
    .features-grid,
    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 2rem;
    }
}

/* Tablets Portrait & Large Phones (768px and below) */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-container {
        position: relative;
    }

    .btn-nav-cta {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        display: none;
        background: white;
        padding: 1rem;
        border-top: 1px solid #eee;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .btn-nav-cta.active {
        display: block;
        margin-top: 0;
    }

    .nav-menu.active ~ .btn-nav-cta {
        display: block;
        margin-top: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .monitoring-content {
        grid-template-columns: 1fr;
    }

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

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 3rem 0;
    }

    .services-grid,
    .features-grid,
    .values-grid,
    .benefits-grid,
    .cert-grid,
    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .gallery-item img {
        height: 250px;
    }

    .jobs-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    /* Modal responsive */
    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 1rem;
        font-size: 1.75rem;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .service-card,
    .feature,
    .value-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .service-image {
        height: 180px;
    }

    .gallery-item img {
        height: 220px;
    }

    .article-image img {
        height: 180px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

    .emergency-number {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-container {
        padding: 0 15px;
    }

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

/* Utilities */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Additional styles for location pages */
.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-inline {
    margin-top: 2rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ===================================
   NEW HOMEPAGE STYLES (Sitly-inspired)
   =================================== */

/* Highlight yellow style */
.highlight-yellow {
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, var(--primary-yellow) 50%);
    padding: 0 8px;
    display: inline;
}

/* Hero Home Section */
.hero-home {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #FFF5E6 100%);
}

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

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hero-benefits li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.hero-trust .stars {
    font-size: 1.1rem;
    color: var(--primary-yellow);
}

.hero-trust strong {
    color: var(--text-dark);
    font-weight: 700;
}

.reviews-link {
    color: var(--primary-purple);
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.3s;
}

.reviews-link:hover {
    color: var(--accent-blue);
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(123, 104, 190, 0.2);
}

/* Why Register Section */
.why-register {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE880 100%);
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.why-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Available Sitters Section */
.available-sitters {
    padding: 80px 0;
    background: #f8f9fa;
}

.available-sitters h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.sitters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 3rem;
}

.sitter-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.sitter-card h3,
.sitter-card p,
.sitter-card span {
    color: inherit;
}

.sitter-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.sitter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-online {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #2ecc71;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.sitter-info {
    padding: 1.2rem;
}

.sitter-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.sitter-location {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.sitter-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sitter-status {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.sitter-rating {
    font-size: 0.9rem;
    color: #f39c12;
}

.sitter-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.sitters-cta {
    text-align: center;
    margin-top: 2rem;
}

/* CTA Bottom Section */
.cta-bottom {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-blue) 100%);
    text-align: center;
}

.cta-bottom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-bottom p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}

/* Responsive Design for New Homepage */
@media (max-width: 968px) {
    .hero-split,
    .why-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1,
    .why-content h2 {
        font-size: 2.5rem;
    }

    .sitters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-home {
        padding: 100px 0 60px;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-benefits li {
        font-size: 1rem;
    }

    .why-content h2,
    .available-sitters h2 {
        font-size: 2rem;
    }

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

    .cta-bottom h2 {
        font-size: 2rem;
    }
}

/* Highlight pink style */
.highlight-pink {
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, var(--primary-coral) 50%);
    padding: 0 8px;
    display: inline;
    color: var(--text-dark);
}

/* How It Works Home Section */
.how-it-works-home {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
}

.how-it-works-header {
    margin-bottom: 3rem;
}

.mascot-icon {
    margin-bottom: 1.5rem;
}

.mascot-icon img {
    width: 120px;
    height: auto;
}

.how-it-works-home h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
}

.step-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.step-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2c3e50;
}

.how-it-works-cta {
    margin-top: 2rem;
}

.how-it-works-cta p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Parents Recommend Section */
.parents-recommend {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8DFFF 0%, #F0EBFF 100%);
    text-align: center;
}

.parents-recommend h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(123, 104, 190, 0.15);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(123, 104, 190, 0.25);
}

.review-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.review-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    font-style: italic;
    position: relative;
}

.review-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-coral);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-yellow);
}

.author-info h4 {
    margin: 0;
    color: var(--primary-purple);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-highlight {
    text-align: center;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(123, 104, 190, 0.1);
    min-width: 150px;
}

.stat-highlight h3 {
    font-size: 2rem;
    color: var(--primary-coral);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.stat-highlight p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mobile responsive for reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-stats {
        gap: 1.5rem;
    }
    
    .stat-highlight {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .parents-recommend h2 {
        font-size: 2rem;
    }
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-it-works-home h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .how-it-works-home h2,
    .parents-recommend h2 {
        font-size: 1.8rem;
    }

    .mascot-icon img {
        width: 80px;
    }
}

/* ===================================
   OPPASSER PROFILE PAGE STYLES
   =================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 100px 0 20px;
    background: #f8f9fa;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumb span:last-child {
    color: #2c3e50;
    font-weight: 600;
}

/* Profile Section */
.profile-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.profile-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
}

/* Profile Sidebar */
.profile-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.profile-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.profile-image-container {
    position: relative;
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-flower {
    position: absolute;
    font-size: 2.5rem;
}

.deco-flower:nth-child(1) {
    top: 20px;
    left: 20px;
}

.deco-flower:nth-child(2) {
    bottom: 30px;
    left: 30px;
}

.deco-star {
    position: absolute;
    font-size: 1.8rem;
}

.deco-star:nth-child(3) {
    top: 30px;
    right: 30px;
}

.deco-star:nth-child(4) {
    bottom: 40px;
    right: 40px;
}

.profile-header-info {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.profile-header-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.profile-location {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.profile-rating .stars {
    color: #f39c12;
    font-size: 1.1rem;
}

.rating-score {
    font-weight: 600;
    color: #2c3e50;
}

.profile-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Availability Section */
.availability-section {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.availability-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.availability-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.availability-table th {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7f8c8d;
    padding: 0.5rem 0.3rem;
    text-align: center;
}

.availability-table td {
    text-align: center;
    padding: 0.5rem 0.3rem;
}

.availability-table .time-label {
    text-align: left;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.availability-table .available {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.availability-table .unavailable {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.availability-legend {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.availability-legend p {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.availability-legend ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.availability-legend li {
    font-size: 0.9rem;
    color: #2c3e50;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.availability-legend .check {
    color: #2ecc71;
    font-weight: bold;
}

.availability-legend .cross {
    color: #e74c3c;
    font-weight: bold;
}

/* Services Offered */
.services-offered {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.services-offered h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lock-icon {
    font-size: 1rem;
}

.services-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Profile CTA */
.profile-cta {
    padding: 1.5rem;
    text-align: center;
}

.btn-block {
    width: 100%;
    display: block;
    margin-bottom: 0.5rem;
}

.cta-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
}

/* Profile Content */
.profile-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.profile-about,
.profile-traits,
.profile-skills,
.profile-reviews,
.profile-location-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.profile-location-section:last-child,
.profile-reviews:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.profile-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Traits */
.traits-list {

/* Responsive Design for Modern Step Components */
/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-large-title {
        font-size: 4rem;
    }
    
    .step-content-modern {
        gap: 5rem;
        min-height: 500px;
    }
    
    .step-image img {
        height: 400px;
    }
    
    .step-number-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-large-title {
        font-size: 3.5rem;
    }
    
    .step-content-modern {
        gap: 4rem;
    }
}

/* Medium-Large Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-large-title {
        font-size: 3rem;
    }
    
    .step-content-modern {
        gap: 3rem;
    }
    
    .step-image img {
        height: 320px;
    }
    
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 2rem;
    }
    
    .hero-large-title {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .hero-toggle {
        padding: 3rem 0 4rem 0;
    }
    
    .hero-toggle-nav {
        max-width: 350px;
        margin-bottom: 2.5rem;
    }
    
    .step-content-modern,
    .step-content-modern.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .step-content-modern.reverse .step-text,
    .step-content-modern.reverse .step-image {
        order: unset;
    }
    
    .step-image img {
        height: 280px;
    }
    
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps-grid {
        gap: 3rem;
    }
    
    .step-number-large {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .step-text h3 {
        font-size: 1.6rem;
    }
}

/* Small-Medium Screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 1.5rem;
    }
    
    .hero-large-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-toggle {
        padding: 2.5rem 0 3.5rem 0;
    }
    
    .hero-toggle-nav {
        max-width: 320px;
        margin-bottom: 2rem;
    }
    
    .toggle-link {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
    
    .step-number-large {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .step-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .step-text p {
        font-size: 1rem;
    }
    
    .step-image img {
        height: 250px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safety-item {
        padding: 1.5rem;
    }
    
    .cta-highlight {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-toggle .hero-trust {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Small Screens (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .hero-large-title {
        font-size: 1.9rem;
        line-height: 1.25;
    }
    
    .hero-small-text {
        font-size: 1rem;
    }
    
    .hero-toggle-nav {
        max-width: 300px;
    }
    
    .toggle-link {
        padding: 9px 16px;
        font-size: 0.9rem;
    }
    
    .step-number-large {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-text h3 {
        font-size: 1.3rem;
    }
    
    .step-text p {
        font-size: 0.95rem;
    }
    
    .step-image img {
        height: 220px;
    }
    
    .safety-item h3 {
        font-size: 1.2rem;
    }
    
    .safety-item p {
        font-size: 0.95rem;
    }
    
    .cta-highlight {
        padding: 2rem 1.2rem;
    }
    
    .cta-highlight h3 {
        font-size: 1.5rem;
    }
}

/* Extra Small Screens (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-large-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-small-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-toggle {
        padding: 2rem 0 3rem 0;
    }
    
    .hero-toggle-nav {
        max-width: 280px;
        padding: 6px;
    }
    
    .toggle-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .hero-toggle .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-number-large {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-text {
        padding: 1rem 0;
    }
    
    .step-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    
    .step-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .step-image img {
        height: 200px;
    }
    
    .steps-grid {
        gap: 2.5rem;
    }
    
    .safety-item {
        padding: 1.2rem;
    }
    
    .safety-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .safety-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .safety-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cta-highlight {
        padding: 1.5rem 1rem;
    }
    
    .cta-highlight h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-highlight p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-toggle .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-toggle .stars {
        font-size: 0.9rem;
    }
    
    .hero-toggle .reviews-link {
        font-size: 0.9rem;
    }
}

/* Ultra Small Screens (below 320px) */
@media (max-width: 319px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-large-title {
        font-size: 1.4rem;
        line-height: 1.35;
    }
    
    .hero-toggle-nav {
        max-width: 260px;
    }
    
    .toggle-link {
        padding: 7px 10px;
        font-size: 0.8rem;
    }
    
    .step-number-large {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-text h3 {
        font-size: 1.1rem;
    }
    
    .step-text p {
        font-size: 0.85rem;
    }
    
    .step-image img {
        height: 180px;
    }
    
    .safety-icon {
        width: 50px;
        height: 50px;
    }
    
    .safety-item h3 {
        font-size: 1rem;
    }
    
    .safety-item p {
        font-size: 0.85rem;
    }
    
    .cta-highlight {
        padding: 1.2rem 0.8rem;
    }
    
    .cta-highlight h3 {
        font-size: 1.2rem;
    }
    
    .cta-highlight p {
        font-size: 0.9rem;
    }
}

/* Section Spacing Optimization */
@media (min-width: 1200px) {
    section {
        padding: 5rem 0;
    }
    
    .hero-toggle {
        padding: 5rem 0 6rem 0;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-toggle {
        padding: 4rem 0 5rem 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-toggle {
        padding: 3rem 0 4rem 0;
    }
}

@media (max-width: 575px) {
    section {
        padding: 2.5rem 0;
    }
    
    .hero-toggle {
        padding: 2.5rem 0 3rem 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }
    
    .hero-toggle {
        padding: 2rem 0 2.5rem 0;
    }
}

@media (max-width: 320px) {
    section {
        padding: 1.5rem 0;
    }
    
    .hero-toggle {
        padding: 1.5rem 0 2rem 0;
    }
}
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trait-tag {
    background: #e8f5e9;
    color: #2c3e50;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trait-tag .check {
    color: #2ecc71;
    font-weight: bold;
}

/* Locked Content */
.locked-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

/* Reviews */
.review-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.review-header {
    margin-bottom: 1rem;
}

.review-rating {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-meta strong {
    color: #1a1a1a;
    font-size: 1.05rem;
}

.review-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.review-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.reviews-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Location */
.location-info {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.location-map {
    background: #e0e0e0;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.map-placeholder p {
    margin: 0.5rem 0;
}

.map-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* Similar Sitters */
.similar-sitters {
    padding: 60px 0;
    background: white;
}

.similar-sitters h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Profile Page */
@media (max-width: 968px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-sidebar {
        position: relative;
        top: auto;
    }

    .profile-image-container {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .profile-header-info h1 {
        font-size: 1.6rem;
    }

    .profile-content {
        padding: 1.5rem;
    }

    .profile-content h2 {
        font-size: 1.5rem;
    }

    .availability-table th,
    .availability-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.8rem;
    }
}