/* CSS Custom Properties for consistent theming */
:root {
    --primary-coral: #EF553F;
    --primary-teal: #0C747A;
    --primary-dark: #3A3B3A;
    --light-coral: #FFF5F3;
    --light-teal: #E8F6F7;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6B7280;
    --success-green: #10B981;
    
    --font-family: Verdana, Arial, Helvetica, sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-semibold: 600;
    --font-bold: 700;
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: var(--font-regular);
    font-size: 18px;
    line-height: 1.7;
    color: #2d3748;
    background-color: var(--white);
    font-optical-sizing: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: var(--font-semibold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-title {
    font-size: 2.8rem;
    font-weight: var(--font-semibold);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

/* Floating Header with Glassmorphism Effects */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 1rem 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 1rem 0;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header.scrolled .header-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}



.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    height: 5rem;
    transition: all 0.3s ease;
}

.header.scrolled .header-content {
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    width: 50px;
    height: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo {
    width: 40px;
    height: 40px;
}

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

.site-title {
    font-size: 1.2rem;
    font-weight: var(--font-semibold);
    color: var(--primary-teal);
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.header.scrolled .site-title {
    font-size: 1.1rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-teal);
    background-color: rgba(15, 116, 122, 0.1);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1rem;
    opacity: 0.8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(15, 116, 122, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--medium-gray);
    transition: all 0.3s ease;
    margin: 2px 0;
}

.mobile-menu-btn.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.open {
    max-height: 400px;
    padding: 1rem 0;
}

.mobile-nav-content {
    padding: 0 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--medium-gray);
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: var(--font-semibold);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav-link:hover {
    color: var(--primary-teal);
    background-color: rgba(15, 116, 122, 0.1);
    transform: translateX(8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-coral) 0%, var(--white) 50%, var(--light-teal) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(15, 116, 122, 0.03) 50%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: visible;
}

.hero-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
    position: relative;
}

.hero-carousel-item {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* Active (center) image */
.hero-carousel-item.active {
    width: 100%;
    max-width: 600px;
    height: 550px;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    left: 50%;
    z-index: 3;
}

/* Previous and next images */
.hero-carousel-item.prev,
.hero-carousel-item.next {
    width: 350px;
    height: 350px;
    opacity: 0.7;
    transform: translateY(100px) scale(0.8);
    z-index: 2;
}

.hero-carousel-item.prev {
    left: -5%;
}

.hero-carousel-item.next {
    right: -5%;
    left: auto;
}

/* Far images */
.hero-carousel-item.far-prev,
.hero-carousel-item.far-next {
    width: 250px;
    height: 250px;
    opacity: 0.4;
    transform: translateY(150px) scale(0.6);
    z-index: 1;
}

.hero-carousel-item.far-prev {
    left: -15%;
}

.hero-carousel-item.far-next {
    right: -15%;
    left: auto;
}

/* Hidden images */
.hero-carousel-item.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(200px) scale(0.4);
    left: 50%;
    z-index: 0;
}

/* Dots navigation */
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.hero-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(15, 116, 122, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel-dot.active {
    background-color: var(--primary-teal);
    transform: scale(1.3);
}

.hero-carousel-dot:hover {
    background-color: rgba(15, 116, 122, 0.6);
}

/* Hero Carousel Responsive */
@media (max-width: 1200px) {
    .hero-carousel-item.prev {
        left: -10%;
    }
    
    .hero-carousel-item.next {
        right: -10%;
    }
    
    .hero-carousel-item.far-prev {
        left: -20%;
    }
    
    .hero-carousel-item.far-next {
        right: -20%;
    }
}

@media (max-width: 992px) {
    .hero-carousel-container {
        height: 450px;
    }
    
    .hero-carousel-item.active {
        max-width: 500px;
        height: 450px;
    }
    
    .hero-carousel-item.prev,
    .hero-carousel-item.next {
        width: 300px;
        height: 300px;
        transform: translateY(75px) scale(0.7);
    }
    
    .hero-carousel-item.far-prev,
    .hero-carousel-item.far-next {
        width: 200px;
        height: 200px;
        opacity: 0.3;
        transform: translateY(125px) scale(0.5);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-carousel-container {
        height: 400px;
    }
    
    .hero-carousel-item.active {
        max-width: 100%;
        height: 400px;
    }
    
    /* Hide side images on mobile */
    .hero-carousel-item.prev,
    .hero-carousel-item.next,
    .hero-carousel-item.far-prev,
    .hero-carousel-item.far-next {
        opacity: 0;
        pointer-events: none;
    }
    
    .hero-carousel {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel-container {
        height: 300px;
    }
    
    .hero-carousel-item.active {
        height: 300px;
    }
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #2d3748;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    color: var(--primary-teal);
    font-size: 1.4rem;
    min-width: 20px;
}

.trust-item span {
    font-weight: var(--font-semibold);
    white-space: nowrap;
}

.hero-headline {
    font-size: 4.2rem;
    font-weight: var(--font-semibold);
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.headline-line-1 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--medium-gray);
    letter-spacing: 0.5px;
}

.headline-line-2 {
    font-size: 3.2rem;
    font-weight: var(--font-bold);
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-line-3 {
    font-size: 3.2rem;
    font-weight: var(--font-bold);
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.headline-line-3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--light-coral) 100%);
    border-radius: 2px;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
    font-weight: var(--font-regular);
}

/* Buttons */
.cta-button {
    display: inline-block;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, var(--primary-coral), #ff6b52);
    color: var(--white);
    padding: 20px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-semibold);
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e8472e, var(--primary-coral));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.cta-button.secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: #f9f9f9;
    margin-top: -4rem;
    padding-top: 6rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: left;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-coral);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: var(--font-semibold);
    color: #1a202c;
    margin-bottom: 1rem;
}

.feature-description {
    color: #2d3748;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Special styling for section titles with orange line */
.about .section-title,
.testimonials .section-title,
.faq .section-title,
.contact .section-title {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}

.about .section-title::after,
.testimonials .section-title::after,
.faq .section-title::after,
.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-coral);
    border-radius: 2px;
}

.about-layout {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: left;
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-feature-icon {
    background: var(--primary-teal);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature-content h4 {
    font-size: 1.3rem;
    font-weight: var(--font-semibold);
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.about-feature-content p {
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about-features {
        gap: 1.5rem;
    }
    
    .about-feature {
        gap: 1rem;
    }
    
    .about-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #2d3748;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-carousel {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    min-height: 280px;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

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

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

.testimonial-quote-icon {
    font-size: 2rem;
    color: rgba(15, 116, 122, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-content {
    font-style: italic;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1.1rem;
    border: none;
    background: none;
    padding: 0;
}

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

.author-info h5 {
    margin: 0;
    color: #1a202c;
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
}

.author-info span {
    color: #2d3748;
    font-size: 1rem;
}

/* Navigation removed - showing all 6 testimonials at once */

/* Responsive adjustments for testimonials carousel */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .testimonial-card {
        min-height: 240px;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-teal);
}

.faq-question h4 {
    margin: 0;
    color: #1a202c;
    font-weight: var(--font-semibold);
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-teal);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem;
    color: #2d3748;
    line-height: 1.8;
    font-size: 1.1rem;
    border-top: 1px solid var(--light-teal);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem 2rem;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-teal), #0a666b);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.contact .section-title {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.contact-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-coral);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(255, 102, 102, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    text-align: center;
    font-weight: var(--font-semibold);
}

.form-message.success {
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: 2px solid rgba(34, 197, 94, 1);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: 2px solid rgba(239, 68, 68, 1);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 116, 122, 0.1) 0%, transparent 50%, rgba(255, 102, 102, 0.05) 100%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 400px;
}

.footer-compliance {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.hipaa-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.hipaa-badge:hover {
    transform: scale(1.05);
    opacity: 1;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-coral);
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-coral);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-contact-icon {
    color: var(--primary-coral);
    font-size: 1rem;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header {
        padding: 0.5rem 0.5rem 0;
    }
    
    .header.scrolled {
        padding: 0.25rem 0.5rem 0;
    }
    
    .header-container {
        border-radius: 0.75rem;
    }
    
    .header-content {
        padding: 0 1rem;
        height: 4rem;
    }
    
    .header.scrolled .header-content {
        height: 3.5rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 7rem;
    }
    
    /* Trust Indicators Mobile */
    .trust-indicators {
        gap: 1rem;
        margin-top: 2rem;
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        gap: 0.25rem;
    }
    
    .trust-icon {
        font-size: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 5vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        line-height: 1.5;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        line-height: 1.3;
    }
    
    /* Adaptive body text for mobile */
    body {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
    }
    
    .feature-description,
    .about-intro {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
        line-height: 1.6;
    }
    
    .about-feature-content h4 {
        font-size: clamp(1.1rem, 3.2vw, 1.3rem);
    }
    
    .about-feature-content p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.7;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: clamp(1rem, 3vw, 1.1rem);
        padding: 1rem;
    }
    
    .form-group label {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
        font-weight: 600;
    }
    
    .cta-button {
        font-size: clamp(1rem, 3.2vw, 1.1rem);
        padding: 1rem 2rem;
        min-height: 48px; /* Touch-friendly size */
    }
    
    /* Testimonial text sizing */
    .testimonial-content {
        font-size: clamp(0.95rem, 2.6vw, 1.1rem);
        line-height: 1.7;
    }
    
    .testimonial-author h5 {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
    }
    
    /* FAQ text sizing */
    .faq-question h4 {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
        line-height: 1.4;
    }
    
    .faq-answer p {
        font-size: clamp(0.95rem, 2.6vw, 1.1rem);
        line-height: 1.7;
    }
    
    /* Footer Mobile Styles */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-description {
        max-width: none;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .footer-link:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.5rem 0;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
    
    .mobile-nav-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-section {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .highlight-box {
        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;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for keyboard navigation */
.nav-link:focus,
.cta-button:focus,
.footer-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0066CC;
        --dark-blue: #003366;
        --medium-gray: #333333;
    }
}

/* Small Mobile Devices (320px - 480px) - Enhanced font sizing */
@media (max-width: 480px) {
    .hero {
        padding-top: 8rem !important;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
        margin-bottom: 1rem;
        gap: 0.15rem;
    }
    
    .headline-line-1 {
        font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
    }
    
    .headline-line-2 {
        font-size: clamp(1.8rem, 5.5vw, 2.2rem) !important;
    }
    
    .headline-line-3 {
        font-size: clamp(1.8rem, 5.5vw, 2.2rem) !important;
    }
    
    .headline-line-3::after {
        height: 3px;
        bottom: -4px;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2rem) !important;
        margin-bottom: 1.5rem;
    }
    
    .trust-item {
        font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
        padding: 0.6rem 0.4rem !important;
    }
    
    .about-feature-content h4 {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 0.75rem !important;
    }
    
    .cta-button {
        font-size: clamp(1rem, 3.5vw, 1.1rem) !important;
        padding: 0.9rem 1.5rem !important;
    }
    
    .footer-description {
        font-size: clamp(0.95rem, 3vw, 1.1rem) !important;
        line-height: 1.8;
    }
}

/* Large Mobile/Small Tablet (481px - 768px) - Optimized font scaling */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-headline {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem) !important;
        gap: 0.2rem;
    }
    
    .headline-line-1 {
        font-size: clamp(1.5rem, 3.5vw, 1.8rem) !important;
    }
    
    .headline-line-2 {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem) !important;
    }
    
    .headline-line-3 {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem) !important;
    }
    
    .headline-line-3::after {
        height: 3px;
        bottom: -6px;
    }
    
    .section-title {
        font-size: clamp(2rem, 3.8vw, 2.4rem) !important;
    }
    
    .about-intro {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
    }
    
    .trust-item {
        font-size: clamp(0.9rem, 2.2vw, 1rem) !important;
        padding: 0.8rem 0.6rem !important;
    }
    
    .feature-description {
        font-size: clamp(1rem, 2.3vw, 1.2rem) !important;
    }
    
    .testimonial-content {
        font-size: clamp(1rem, 2.4vw, 1.15rem) !important;
    }
}
