/* 
  Home Revive Website Styles
  
  Color Palette:
  - Primary: #2C5F5D (Deep Teal)
  - Accent: #F4B942 (Warm Yellow)  
  - Success: #10B981 (Green)
  - Warning: #F59E0B (Orange)
  - Error: #EF4444 (Red)
  - Neutral: #F8FAFC (Off-white), #64748B (Gray)
  
  Typography: System fonts (Inter/Segoe UI/Roboto fallback)
  
  To update contact info:
  - Phone: Search for "+6591234567" and replace
  - Email: Search for "hello@homerevive.sg" and replace
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f8fafc;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: #2C5F5D;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F4B942;
    text-decoration: underline;
}

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

.btn-primary {
    background: #2C5F5D;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(44, 95, 93, 0.1);
}

.btn-primary:hover {
    background: #1e4240;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(44, 95, 93, 0.3);
    text-decoration: none;
    color: white;
}

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

.btn-secondary:hover {
    background: #2C5F5D;
    color: white;
    text-decoration: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.nav-brand a {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C5F5D;
    text-decoration: none;
}

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

.nav-link {
    font-weight: 500;
    color: #64748b;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2C5F5D;
    text-decoration: none;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2C5F5D;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Animated hamburger */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Main Content */
.main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2C5F5D 0%, #1e4240 50%, #F4B942 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    opacity: 0.1;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 3rem;
    color: #2C5F5D;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2C5F5D, #1e4240);
    color: white;
    text-align: center;
    padding: 4rem 1rem 2rem;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Actions Sidebar */
.quick-actions {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.quick-btn {
    background: #2C5F5D;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(44, 95, 93, 0.1);
}

.quick-btn:hover {
    background: #1e4240;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(44, 95, 93, 0.3);
    color: white;
    text-decoration: none;
}

.quick-contact {
    padding: 0.5rem;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.quick-contact:hover {
    background: #f8fafc;
    border-color: #2C5F5D;
    color: #2C5F5D;
    text-decoration: none;
}

/* Mobile CTA Bar */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    display: none;
    justify-content: space-between;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-cta-btn {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-cta-btn:not(.primary) {
    background: #f8fafc;
    color: #2C5F5D;
    border: 1px solid #e2e8f0;
    margin-right: 0.5rem;
}

.mobile-cta-btn.primary {
    background: #2C5F5D;
    color: white;
    margin-left: 0.5rem;
}

.mobile-cta-btn:hover {
    text-decoration: none;
}

.mobile-cta-btn.primary:hover {
    background: #1e4240;
    color: white;
}

/* Content Cards */
.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

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

/* Slide-in Animation */
.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Article Styles */
.article {
    max-width: 900px;
    margin: 0 auto;
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.factor-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2C5F5D;
}

.factor-item h4 {
    color: #2C5F5D;
    margin-bottom: 0.5rem;
}

/* Mistakes List */
.mistakes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mistake-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.mistake-item:hover {
    border-color: #2C5F5D;
    box-shadow: 0 4px 6px -1px rgba(44, 95, 93, 0.1);
}

.pro-tip, .case-study, .expert-tip, .example, .safety-note, .timeline {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #F4B942;
}

.safety-note {
    border-left-color: #ef4444;
}

/* Tips List */
.tips-list {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.tips-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

/* Values Section */
.values-section {
    margin: 3rem 0;
}

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

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

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

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
}

.value-icon.quality {
    background: linear-gradient(135deg, #2C5F5D, #1e4240);
}

.value-icon.quality::before {
    clip-path: polygon(50% 0%, 63% 38%, 100% 38%, 69% 59%, 82% 100%, 50% 75%, 18% 100%, 31% 59%, 0% 38%, 37% 38%);
}

.value-icon.reliability {
    background: linear-gradient(135deg, #F4B942, #f59e0b);
}

.value-icon.reliability::before {
    border-radius: 50%;
    border: 3px solid white;
    box-sizing: border-box;
}

.value-icon.trust {
    background: linear-gradient(135deg, #10b981, #059669);
}

.value-icon.trust::before {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #2C5F5D;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

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

/* Team Highlights */
.team-highlights {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
}

.highlight-item strong {
    display: block;
    font-size: 1.5rem;
    color: #2C5F5D;
    font-weight: 700;
}

.highlight-item span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Coverage Features */
.coverage-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.coverage-features li {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2C5F5D;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.coverage-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.guarantee-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #F4B942;
}

.guarantee-item h3 {
    color: #2C5F5D;
}

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

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

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

.offering-header {
    background: linear-gradient(135deg, #2C5F5D, #1e4240);
    color: white;
    padding: 2rem;
    text-align: center;
}

.offering-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offering-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
}

.furniture-icon::before { clip-path: polygon(0% 20%, 100% 20%, 100% 40%, 0% 40%); }
.electrical-icon::before { 
    border-radius: 50%;
    background: radial-gradient(circle at center, white 30%, transparent 30%, transparent 50%, white 50%, white 70%, transparent 70%);
}
.plumbing-icon::before { clip-path: polygon(40% 0%, 60% 0%, 60% 100%, 40% 100%); }
.carpentry-icon::before { clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%, 10% 50%); }
.painting-icon::before { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.maintenance-icon::before { clip-path: polygon(50% 0%, 63% 38%, 100% 38%, 69% 59%, 82% 100%, 50% 75%, 18% 100%, 31% 59%, 0% 38%, 37% 38%); }

.offering-header h2 {
    margin-bottom: 0.5rem;
}

.availability {
    background: rgba(244, 185, 66, 0.2);
    color: #F4B942;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

.offering-content {
    padding: 2rem;
}

/* Accordion Styles */
.accordion-toggle {
    display: none;
}

.accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
    color: #2C5F5D;
    transition: color 0.3s ease;
}

.accordion-label:hover {
    color: #1e4240;
}

.accordion-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
}

.accordion-toggle:checked + .accordion-label .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-toggle:checked + .accordion-label + .accordion-content {
    max-height: 1000px;
    padding: 1.5rem 0;
}

.workflow-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #e2e8f0;
}

.workflow-card h4 {
    color: #2C5F5D;
    margin-bottom: 1rem;
}

.workflow-card ol {
    padding-left: 1.5rem;
}

.workflow-card li {
    margin-bottom: 0.5rem;
}

.offering-cta {
    background: #F4B942;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.offering-cta:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    text-decoration: none;
    color: #1f2937;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #2C5F5D;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

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

.accordion-toggle:checked + .faq-question + .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-contact {
    margin-top: 3rem;
}

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

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

/* Contact Page */
.contact-methods {
    margin: 2rem 0;
}

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
}

.phone-icon {
    background: linear-gradient(135deg, #2C5F5D, #1e4240);
}

.phone-icon::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%);
}

.email-icon {
    background: linear-gradient(135deg, #F4B942, #f59e0b);
}

.email-icon::before {
    clip-path: polygon(0% 20%, 50% 80%, 100% 20%, 100% 100%, 0% 100%);
}

.response-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.response-icon::before {
    border-radius: 50%;
    border: 3px solid white;
    box-sizing: border-box;
}

.contact-method h3 {
    color: #2C5F5D;
    margin-bottom: 0.5rem;
}

.contact-method p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-method span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Booking Form */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
    text-align: center;
    color: #2C5F5D;
    margin-bottom: 2rem;
}

.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: 500;
    color: #374151;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C5F5D;
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

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

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

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

.form-group.error .error-message {
    display: block;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.privacy-note,
.form-note {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.privacy-note small,
.form-note small {
    color: #64748b;
}

/* Service Areas */
.service-areas {
    margin: 3rem 0;
}

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

.area-category {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.area-category h4 {
    color: #2C5F5D;
    margin-bottom: 1rem;
}

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

.area-category li {
    padding: 0.25rem 0;
    color: #64748b;
}

.area-category li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2C5F5D, #1e4240);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.final-cta .btn-secondary:hover {
    background: white;
    color: #2C5F5D;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.footer-info h3 {
    color: #F4B942;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: #F4B942;
}

.footer-info a:hover {
    color: white;
}

.footer-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F4B942;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-actions {
        display: none;
    }
    
    .mobile-cta {
        display: flex;
    }
    
    .main {
        margin-bottom: 80px; /* Space for mobile CTA bar */
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .team-highlights {
        flex-direction: column;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .offering-header,
    .booking-form-container {
        padding: 1.5rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .slide-in {
        opacity: 1;
        transform: none;
    }
    
    .hero-background {
        animation: none;
    }
}

/* Focus Styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2C5F5D;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .content-card {
        border: 1px solid #000;
    }
    
    .btn-primary {
        border: 2px solid #000;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}