/* GO! with CoCo - Website Styles */
/* Professional Travel Companion Services */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
}

/* Sticky Banner Placeholder */
.banner-placeholder {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1C3B54 0%, #E87722 100%);
    padding: 80px 20px;
    border-bottom: 5px solid #F5576C;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1C3B54 0%, #2C3E50 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero .subtitle {
    font-size: 1.8em;
    color: #E87722;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero .tagline {
    font-size: 1.5em;
    color: #F5576C;
    font-style: italic;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #E87722;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(232, 119, 34, 0.3);
}

.cta-button:hover {
    background: #d66a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
}

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

/* Section Styling */
section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1C3B54;
    margin-bottom: 20px;
}

section .section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #2C3E50;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Professional Difference Section */
.professional-difference {
    background: #F8F9FA;
}

.difference-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.8;
}

.highlight-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #E87722;
}

.highlight-box p {
    font-size: 1.3em;
    font-weight: 600;
    color: #1C3B54;
    margin: 0;
}

.credentials {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.credentials h3 {
    color: #E87722;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.badge {
    display: inline-block;
    background: #1C3B54;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 5px;
    font-weight: bold;
}

/* Why Choose CoCo Section */
.why-choose {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #F8F9FA;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.why-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.why-card h3 {
    color: #1C3B54;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 15px;
}

/* Service Tiers */
.service-tiers {
    background: white;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tier-card {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    border: 3px solid transparent;
}

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

.tier-card.popular {
    background: linear-gradient(135deg, #FDF0F1 0%, #F8F9FA 100%);
    border-color: #E87722;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #E87722;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.tier-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.tier-name {
    font-size: 1.8em;
    color: #1C3B54;
    font-weight: bold;
    margin-bottom: 15px;
}

.tier-price {
    font-size: 2em;
    color: #E87722;
    font-weight: bold;
    margin-bottom: 20px;
}

.tier-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #2C3E50;
    margin-bottom: 25px;
    text-align: left;
}

.tier-features {
    text-align: left;
    margin-bottom: 25px;
}

.tier-features ul {
    list-style: none;
    padding: 0;
}

.tier-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tier-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E87722;
    font-weight: bold;
    font-size: 1.2em;
}

.tier-cta {
    display: inline-block;
    background: #1C3B54;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.tier-cta:hover {
    background: #2C3E50;
}

/* Planning Package */
.planning-package {
    background: #FFF5F0;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border: 3px solid #E87722;
}

.planning-package h3 {
    color: #1C3B54;
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}

.planning-package .price {
    text-align: center;
    font-size: 1.5em;
    color: #E87722;
    font-weight: bold;
    margin-bottom: 20px;
}

.planning-package p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.planning-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.05em;
}

.feature-item strong {
    color: #1C3B54;
    display: block;
    margin-bottom: 5px;
}

/* Respite Services Section */
.respite-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border: 3px solid #F5576C;
}

.respite-section h3 {
    color: #1C3B54;
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
}

.respite-section > p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.respite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.respite-card {
    background: #FDF0F1;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #F5576C;
}

.respite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.2);
}

.respite-card h4 {
    color: #1C3B54;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.respite-price {
    font-size: 1.8em;
    color: #F5576C;
    font-weight: bold;
    margin: 15px 0;
}

.respite-card p {
    font-size: 1.05em;
    line-height: 1.5;
}

/* Policy Section */
.policy-section {
    background: #1C3B54;
    color: white;
    padding: 60px 20px;
}

.policy-section h2 {
    color: white;
}

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

.policy-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

.policy-card h3 {
    color: #E87722;
    margin-bottom: 15px;
    font-size: 1.4em;
}

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

.policy-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.policy-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #F5576C;
    font-size: 1.5em;
}

/* Specialties Section */
.specialties {
    background: #F8F9FA;
}

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

.specialty-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.specialty-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.specialty-card h3 {
    color: #1C3B54;
    font-size: 1.4em;
    margin-bottom: 15px;
}

/* How It Works */
.how-it-works {
    background: white;
}

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

.step {
    text-align: center;
}

.step-number {
    background: #E87722;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1C3B54;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #1C3B54 0%, #2C3E50 100%);
    color: white;
}

.testimonials h2 {
    color: white;
}

.testimonial-card {
    background: white;
    color: #2C3E50;
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quote {
    font-size: 1.3em;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote::before {
    content: """;
    font-size: 3em;
    color: #F5576C;
    line-height: 0;
}

.testimonial-author {
    font-weight: bold;
    color: #1C3B54;
    text-align: right;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-item {
    background: #F8F9FA;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    color: #1C3B54;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #F8F9FA;
    text-align: center;
}

.contact-info {
    font-size: 1.3em;
    margin-top: 40px;
}

.contact-item {
    display: inline-block;
    margin: 20px 30px;
}

.contact-item a {
    color: #1C3B54;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #E87722;
}

.contact-icon {
    font-size: 1.5em;
    color: #E87722;
    margin-right: 10px;
}

/* Footer */
footer {
    background: #1C3B54;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero .tagline {
        font-size: 1.2em;
    }

    section h2 {
        font-size: 2em;
    }

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

    .contact-item {
        display: block;
        margin: 15px 0;
    }

    .banner-placeholder {
        padding: 40px 20px;
    }
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}
