/* ==========================================
   THRIVE 4 PEAK PERFORMANCE - STYLESHEET
   ========================================== */

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #6B7280;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.375rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

a {
    color: #4A90A4;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0A5F5F;
}

strong {
    font-weight: 600;
    color: #0A5F5F;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6B7280;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
}

.btn-primary {
    background-color: #FF6B6B;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #e55555;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #0A5F5F;
    color: #0A5F5F;
    padding: 14px 28px;
}

.btn-secondary:hover {
    background-color: #0A5F5F;
    color: #FFFFFF;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-link {
    color: #4A90A4;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #0A5F5F;
    transform: translateX(4px);
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    flex: 1;
    margin: 0 2rem;
}

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

.nav-link {
    color: #0A5F5F;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #4A90A4;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 280px;
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #0A5F5F;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #F9FAFB;
    color: #4A90A4;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    color: #0A5F5F;
    font-weight: 600;
    font-size: 1.125rem;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #0A5F5F;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 95, 95, 0.85) 0%, rgba(74, 144, 164, 0.75) 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-title {
    color: #FFFFFF;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #FFFFFF;
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================
   TRUST SECTION
   ========================================== */

.trust-section {
    padding: 5rem 0;
    background-color: #F9FAFB;
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-header h2 {
    margin-bottom: 1rem;
}

.location-badge {
    font-size: 1.25rem;
    color: #0A5F5F;
    font-weight: 600;
}

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

.trust-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.trust-card img {
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-reviews {
    text-align: center;
    font-size: 1.25rem;
}

.google-reviews strong {
    color: #0A5F5F;
    font-size: 1.5rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-benefit {
    color: #4A90A4;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #6B7280;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.how-it-works {
    padding: 6rem 0;
    background-color: #F9FAFB;
}

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

.step {
    text-align: center;
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -10px;
    right: calc(50% - 80px);
    width: 40px;
    height: 40px;
    background-color: #FF6B6B;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    color: #6B7280;
}

/* ==========================================
   CONVERSION SECTION
   ========================================== */

.conversion-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A5F5F 0%, #4A90A4 100%);
    text-align: center;
}

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

.conversion-content h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.conversion-content p {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.conversion-note {
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

.conversion-note a {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: underline;
}

.trust-badge {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials-section {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: #F9FAFB;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    color: #FF6B6B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #0A5F5F;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #0A5F5F;
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    color: #6B7280;
    font-size: 0.875rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #0A5F5F;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFFFFF;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

.footer-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .hero {
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .main-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .phone-link {
        display: block;
        text-align: center;
        margin: 1rem 0;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 400px;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Steps Grid Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-number {
        right: calc(50% - 60px);
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Section Spacing Mobile */
    .trust-section,
    .services-section,
    .how-it-works,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .conversion-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #4A90A4;
    outline-offset: 2px;
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0A5F5F;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background: #000;
        color: #fff;
    }
    
    a {
        color: #5bc0de;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .conversion-section,
    .hero-cta,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
