/* =========================================
   ReviveO3 - Pure CSS Stylesheet
   ========================================= */

/* CSS Variables */
:root {
    --primary: #46687d;
    --primary-light: #6a989e;
    --primary-dark: #3a5568;
    --gold: #F4C430;
    --gold-light: rgba(244, 196, 48, 0.2);

    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;

    --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-serif: 'Manrope', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --coastal-shadow: 0 4px 20px rgba(70, 104, 125, 0.15);

    --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

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

.italic {
    font-style: italic;
    font-weight: 300;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .btn-lg {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
    }
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0.5rem 0;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

.logo img {
    height: 4rem;
    width: auto;
}

@media (min-width: 1024px) {
    .logo img {
        height: 4.5rem;
    }
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border);
}

.mobile-nav.open {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-link {
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        height: 550px;
    }
}

@media (min-width: 1024px) {
    .hero {
        height: 650px;
    }
}

@media (min-width: 1440px) {
    .hero {
        height: 700px;
    }
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(251, 251, 251, 0.3) 0%, rgba(253, 252, 252, 0.1) 40%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(249, 249, 249, 0.5) 0%, rgba(250, 249, 249, 0.3) 100%);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
    text-align: left;
    color: rgb(70, 104, 125);
    padding: 0 2rem;
}

@media (max-width: 767px) {
    .hero-content {
        text-align: center;
        top: 40%;
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        top: 45%;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 4rem;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.15;
}

.hero-title-line {
    display: block;
}

@media (max-width: 767px) {
    .hero-title {
        margin: 0 auto 0.75rem;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        max-width: 550px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
        max-width: 650px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
        max-width: 700px;
    }
}

.hero-subtitle {
    font-size: 0.875rem;
    color: rgb(70, 104, 125);
    max-width: 550px;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hero-subtitle {
        margin: 0 auto 1rem;
        font-size: 0.8125rem;
    }
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

.hero-badges {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-badges {
        bottom: 1.5rem;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-badges {
        bottom: 2rem;
        gap: 1.5rem;
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (min-width: 640px) {
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
}

.badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

@media (min-width: 640px) {
    .badge-dot {
        width: 0.5rem;
        height: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .badge-dot {
        width: 0.625rem;
        height: 0.625rem;
        box-shadow: 0 0 10px var(--gold);
    }
}

/* Sections */
.section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
}

.section-muted {
    background-color: var(--muted);
}

.section-light {
    background: linear-gradient(to bottom, white, #f8fafc);
}

.section-header {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--gold), var(--primary), var(--primary-light));
    margin: 0 auto;
}

/* About Section */
.about-intro {
    max-width: 56rem;
    margin: 0 auto 4rem;
}

.about-text {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.8;
}

@media (min-width: 640px) {
    .about-text {
        font-size: 1.125rem;
    }
}

.about-text p {
    margin-bottom: 1.5rem;
}

.service-list {
    margin-top: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.icon-droplet {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--primary);
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Location Card */
.location-card {
    margin-bottom: 4rem;
}

.location-card-inner {
    max-width: 48rem;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--muted);
    border-radius: 1rem;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.location-card-inner h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.location-card-inner p {
    color: var(--muted-foreground);
    font-style: italic;
    font-size: 1.125rem;
}

.icon-map-pin {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

/* Bio Sections */
.bio-section {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .bio-section {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.bio-section-reverse .bio-content {
    order: 1;
}

@media (min-width: 1024px) {
    .bio-section-reverse .bio-content {
        order: 2;
    }

    .bio-section-reverse .bio-image {
        order: 1;
    }
}

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

@media (min-width: 640px) {
    .bio-content h3 {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .bio-content h3 {
        font-size: 2.25rem;
    }
}

.bio-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bio-title {
    font-weight: 600;
    color: var(--foreground) !important;
}

.bio-image img {
    width: 100%;
    max-width: 24rem;
    max-height: 30rem;
    object-fit: cover;
    object-position: top;
    border-radius: 1rem;
    box-shadow: var(--coastal-shadow);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .bio-image img {
        margin: 0;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(70, 104, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--primary);
}

.feature-icon-gold {
    background: var(--gold-light);
    border: 2px solid var(--gold);
}

.feature-icon-gold svg {
    stroke: var(--gold);
}

.feature-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Treatments Section */
.treatments-accordion {
    max-width: 72rem;
    margin: 0 auto;
}

.treatments-loading {
    text-align: center;
    padding: 3rem;
    color: var(--muted-foreground);
}

.treatment-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}

.treatment-card:hover {
    border-color: rgba(244, 196, 48, 0.5);
}

.treatment-header {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s;
}

@media (min-width: 640px) {
    .treatment-header {
        padding: 1.5rem;
    }
}

.treatment-header:hover {
    background-color: #f8fafc;
}

.treatment-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.treatment-title h3 {
    color: var(--primary);
}

@media (min-width: 640px) {
    .treatment-title {
        gap: 1rem;
    }
}

.treatment-title svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--primary);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .treatment-title svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.treatment-title h3 {
    font-size: 1rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .treatment-title h3 {
        font-size: 1.25rem;
    }
}

.chevron {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--muted-foreground);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.treatment-header[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.treatment-content {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.treatment-content.open {
    display: block;
}

/* Treatment Services Grid */
.treatment-services-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .treatment-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.treatment-service-card {
    background: var(--muted);
    border-radius: 0.5rem;
    padding: 1.25rem;
    transition: var(--transition);
}

.treatment-service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.treatment-service-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.treatment-service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0rem;
}

.treatment-service-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Add subtle hover effect on service cards */
@media (hover: hover) {
    .treatment-service-card:hover {
        background: rgba(226, 232, 240, 0.6);
    }
}

/* SoftWave Section */
.softwave-logo {
    height: 5rem;
    width: auto;
    margin: 0 auto 1.5rem;
}

.softwave-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .softwave-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.softwave-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

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

.softwave-card>p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.softwave-list {
    list-style: none;
}

.softwave-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.softwave-list li::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2346687d' stroke='%2346687d' stroke-width='2'%3E%3Cpath d='M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.softwave-list li strong {
    color: var(--foreground);
}

.softwave-experience {
    background: linear-gradient(135deg, rgba(70, 104, 125, 0.05), rgba(70, 104, 125, 0.1));
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(70, 104, 125, 0.2);
}

@media (min-width: 768px) {
    .softwave-experience {
        padding: 3rem;
    }
}

.softwave-experience h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.experience-grid {
    display: grid;
    gap: 1rem;
    max-width: 60rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

.experience-item::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2346687d' stroke='%2346687d' stroke-width='2'%3E%3Cpath d='M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-top: 0.125rem;
}

/* Testimonials Section */
.testimonials-carousel {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonials-track {
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--coastal-shadow);
    display: none;
}

.testimonial-card.active {
    display: block;
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 2.5rem;
    }
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.125rem;
}

.testimonial-text {
    color: var(--muted-foreground);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.author-treatment {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--muted);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--foreground);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.testimonials-cta {
    text-align: center;
    color: var(--muted-foreground);
    margin-top: 3rem;
}

/* Payment Options Section */
.section-payment {
    background: linear-gradient(to bottom, var(--background) 0%, var(--muted) 100%);
}

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

@media (min-width: 640px) {
    .payment-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .payment-options-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.payment-option {
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.payment-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--coastal-shadow);
    border-color: var(--primary-light);
}

.payment-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.payment-icon svg {
    width: 2rem;
    height: 2rem;
}

.payment-option h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.payment-option p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.6;
}

.payment-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--primary-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.payment-note svg {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.payment-note p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

@media (max-width: 639px) {
    .payment-note {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-intro {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(70, 104, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--primary);
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--coastal-shadow);
}

.map-container iframe {
    display: block;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--coastal-shadow);
}

@media (min-width: 640px) {
    .contact-form-container {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .contact-form-container {
        padding: 2.5rem;
    }
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 0.875rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(70, 104, 125, 0.1);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--primary);
}

/* Form Validation Errors */
.form-error-text {
    display: none;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.has-error label {
    color: #ef4444;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #ef4444;
    border-width: 2px;
    background-color: #fef2f2;
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
    outline: none;
}

input.error,
textarea.error {
    border-color: #ef4444;
    border-width: 2px;
    background-color: #fef2f2;
}

/* Form Success/Error Messages */
.form-message {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    animation: slideIn 0.3s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-success {
    background: #ecfdf5;
    border: 2px solid #10b981;
    color: #065f46;
}

.form-success svg {
    stroke: #10b981;
}

.form-error {
    background: #fef2f2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.form-error svg {
    stroke: #ef4444;
}

.form-error strong {
    color: #dc2626;
}

.form-message strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-message p {
    margin: 0;
    font-size: 0.875rem;
    color: inherit;
}

/* Submit Button Loading State */
.btn-loader {
    display: none;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Team Photo */
.team-photo-container {
    margin: 4rem auto 3rem;
    text-align: center;
}

.team-photo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Partner Logos */
.partner-logos {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    box-shadow: var(--coastal-shadow);
}

.partner-card img {
    height: 3rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .partner-card img {
        height: 4rem;
    }
}

@media (min-width: 768px) {
    .partner-card img {
        height: 5rem;
    }
}

.partner-card p {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .partner-card p {
        font-size: 0.875rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafc, rgba(219, 234, 254, 0.3));
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

@media (min-width: 1024px) {
    .footer {
        padding: 5rem 0 2rem;
    }
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 4fr 8fr;
        gap: 4rem;
    }
}

.footer-logo {
    height: 5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand>p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--primary);
    flex-shrink: 0;
}

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

.social-links a {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(70, 104, 125, 0.1), rgba(70, 104, 125, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: var(--coastal-shadow);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.footer-links {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-content .btn {
    animation-delay: 0.6s;
}

.hero-badges {
    animation-delay: 0.8s;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}