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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Florida Color Palette Variables */
:root {
    --florida-turquoise: #0891B2;
    --florida-ocean: #0EA5E9;
    --florida-coral: #F97316;
    --florida-palm: #059669;
    --florida-sand: #FEF3C7;
    --florida-sunset: #FB923C;
    --florida-sky: #38BDF8;
    --warm-white: #FFFBEB;
}

/* Top Info Bar - Enhanced for visibility */
.top-info-bar {
    background: linear-gradient(135deg, #0891B2 0%, #0EA5E9 100%);
    color: white;
    padding: 14px 0;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.2);
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item .icon {
    font-size: 16px;
}

.info-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 60px;
    width: auto;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--florida-turquoise);
}

.cta-button {
    background: linear-gradient(135deg, var(--florida-coral) 0%, var(--florida-sunset) 100%);
    color: white !important;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(249, 115, 22, 0.3);
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, var(--florida-sunset) 0%, var(--florida-coral) 100%);
}

.supplements-button {
    background: linear-gradient(135deg, var(--florida-palm) 0%, #047857 100%);
}

/* Hero Section - Split Layout with Full Image Display */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: linear-gradient(135deg, #0891B2 0%, #0EA5E9 50%, #059669 100%);
}

.hero-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    color: white;
}

.hero-split-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-split-content .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-split-content .hero-locations {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-split-content .hero-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 10px;
}

.hero-split-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
}

.hero-split-image picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.5s ease;
}

/* Parallax scroll effect for hero image */
@supports (background-attachment: fixed) {
    .hero-split-image img {
        will-change: transform;
    }
}

/* Tablet: Stack vertically with image on top */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split-image {
        order: -1;
        height: 400px;
    }

    .hero-split-image img {
        object-position: center 20%;
    }

    .hero-split-content {
        padding: 40px 30px;
        text-align: center;
    }

    .hero-split-content h1 {
        font-size: 2.2rem;
    }
}

/* Mobile: Compact layout */
@media (max-width: 576px) {
    .hero-split-image {
        height: 300px;
    }

    .hero-split-content {
        padding: 30px 20px;
    }

    .hero-split-content h1 {
        font-size: 1.8rem;
    }

    .hero-split-content .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-split-content .hero-locations {
        font-size: 0.95rem;
    }
}

/* Legacy hero styles (kept for other pages) */
.hero {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.92) 0%, rgba(14, 165, 233, 0.88) 50%, rgba(5, 150, 105, 0.85) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta-button {
    background: linear-gradient(135deg, var(--florida-coral) 0%, var(--florida-sunset) 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6);
    background: linear-gradient(135deg, var(--florida-sunset) 0%, var(--florida-coral) 100%);
}

/* Pricing Container */
.pure-rx-pricing-container {
    background: #f8fafb;
    padding: 80px 20px;
}

.pure-rx-hero-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.pure-rx-hero-message h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.pure-rx-hero-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.pure-rx-pricing-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pure-rx-pricing-header {
    background: linear-gradient(135deg, var(--florida-turquoise) 0%, var(--florida-ocean) 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.pure-rx-pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pure-rx-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pure-rx-pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.pure-rx-pricing-option {
    padding: 40px;
    text-align: center;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.pure-rx-pricing-option .pure-rx-cta-button {
    margin-top: auto;
}

.pure-rx-pricing-option:last-child {
    border-right: none;
}

.pure-rx-icon {
    margin-bottom: 20px;
}

.pure-rx-pricing-option h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.pure-rx-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A90C6;
    margin-bottom: 25px;
}

.followup .pure-rx-price {
    color: #87BC35;
}

.pure-rx-pricing-option ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pure-rx-pricing-option li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.pure-rx-pricing-option li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #87BC35;
    font-weight: bold;
}

.pure-rx-cta-button {
    background: linear-gradient(135deg, #1A90C6 0%, #2C7B9B 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pure-rx-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 144, 198, 0.3);
}

.pure-rx-pricing-footer {
    background: #f8f9fa;
    padding: 30px 40px;
    text-align: center;
    border-top: 1px solid #eee;
}

.pure-rx-insurance {
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.pure-rx-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: #1A90C6;
    margin-top: 15px;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #1A90C6 0%, #2C7B9B 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.quote {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 300;
}

.quote-author {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about-teaser {
    padding: 80px 20px;
    background: #f8fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.cta-main {
    background: linear-gradient(135deg, #87BC35 0%, #6FA025 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 188, 53, 0.3);
}

/* Services Section */
.services-preview {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 600;
}

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

.service-card {
    background: #f8fafb;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

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

/* Testimonials Section */
.testimonials-preview {
    background: #f8fafb;
    padding: 80px 20px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.testimonial-slide {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #1A90C6;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 20px 20px 20px;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1A90C6;
}

.footer-column p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.appwt-copyright {
    color: #999;
    text-decoration: none;
}

.appwt-copyright:hover {
    color: #1A90C6;
}

/* Fade In Animation */
.fade-in {
    opacity: 1;
    animation: fadeIn 1s ease-in;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pure-rx-pricing-options {
        grid-template-columns: 1fr;
    }
    
    .pure-rx-pricing-option {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .pure-rx-pricing-option:last-child {
        border-bottom: none;
    }
    
    .info-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links {
        margin-top: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pure-rx-hero-message h2 {
        font-size: 2rem;
    }
    
    .quote {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(26, 144, 198, 0.9) 0%, rgba(44, 123, 155, 0.9) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-main {
    padding: 80px 20px;
    background: white;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.doctor-quote {
    background: #f8fafb;
    border-left: 4px solid #1A90C6;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
}

.credentials-section {
    background: #f8fafb;
    padding: 80px 20px;
}

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

.credential-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.credential-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.credential-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.credential-card p {
    color: #666;
    line-height: 1.6;
}

.specialties-section {
    padding: 80px 20px;
    background: white;
}

.specialties-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.specialties-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.specialty-areas {
    margin-top: 40px;
}

.specialty-item {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.specialty-item:last-child {
    border-bottom: none;
}

.specialty-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.specialty-item p {
    color: #666;
    line-height: 1.6;
}

.specialties-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.philosophy-section {
    background: #f8fafb;
    padding: 80px 20px;
}

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

.philosophy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.philosophy-card p {
    color: #666;
    line-height: 1.6;
}

.florida-section {
    padding: 80px 20px;
    background: white;
}

.florida-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.florida-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.florida-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.florida-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
    text-align: left;
}

.florida-benefit h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.florida-benefit p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.nav-links a.active {
    color: #1A90C6;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-content-grid,
    .specialties-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .credentials-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .florida-benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .specialties-text,
    .florida-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pure-rx-pricing-container,
    .about-teaser,
    .services-preview,
    .testimonials-preview,
    .about-hero,
    .about-main,
    .credentials-section,
    .specialties-section,
    .philosophy-section,
    .florida-section {
        padding: 60px 20px;
    }
    
    .pure-rx-pricing-option,
    .testimonial-slide,
    .credential-card,
    .philosophy-card {
        padding: 30px 20px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
}

/* Reviews Page Styles */
.reviews-hero {
    background: linear-gradient(135deg, rgba(135, 188, 53, 0.9) 0%, rgba(111, 160, 37, 0.9) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.reviews-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials-main {
    padding: 80px 20px;
    background: #f8fafb;
}

.testimonial-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.testimonial-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.testimonial-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 4rem;
    color: #1A90C6;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-left: 30px;
}

.testimonial-author {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author strong {
    color: #1A90C6;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.condition {
    color: #87BC35;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-stats {
    background: linear-gradient(135deg, #1A90C6 0%, #2C7B9B 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.stats-content h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #87BC35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.treatment-areas {
    padding: 80px 20px;
    background: white;
}

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

.condition-item {
    background: #f8fafb;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.condition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.condition-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.condition-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.condition-item p {
    color: #666;
    line-height: 1.6;
}

.reviews-cta {
    background: #f8fafb;
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    background: transparent;
    color: #1A90C6;
    border: 2px solid #1A90C6;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.cta-phone:hover {
    background: #1A90C6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 144, 198, 0.3);
}

@media (max-width: 768px) {
    .reviews-hero h1 {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .condition-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .reviews-hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-intro h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(135, 188, 53, 0.9) 0%, rgba(111, 160, 37, 0.9) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-main {
    padding: 80px 20px;
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detailed {
    background: #f8fafb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.service-icon-large {
    font-size: 4rem;
    min-width: 80px;
}

.service-header h3 {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.service-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.service-content ul {
    list-style: none;
    margin: 15px 0 25px 0;
}

.service-content li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #87BC35;
    font-weight: bold;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(26, 144, 198, 0.1) 0%, rgba(44, 123, 155, 0.1) 100%);
    border-left: 4px solid #1A90C6;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.service-note {
    background: linear-gradient(135deg, rgba(135, 188, 53, 0.1) 0%, rgba(111, 160, 37, 0.1) 100%);
    border-left: 4px solid #87BC35;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.consultation-process {
    background: #f8fafb;
    padding: 80px 20px;
}

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

.process-step {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A90C6 0%, #2C7B9B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.lab-testing {
    padding: 80px 20px;
    background: white;
}

.lab-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.lab-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.lab-content > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 50px;
}

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

.lab-category {
    background: #f8fafb;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: left;
}

.lab-category h3 {
    font-size: 1.3rem;
    color: #1A90C6;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.lab-category ul {
    list-style: none;
}

.lab-category li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.lab-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #87BC35;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-cta {
    background: linear-gradient(135deg, #1A90C6 0%, #2C7B9B 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.services-cta .cta-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.services-cta .cta-content p {
    color: white;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.pricing-reminder {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.pricing-reminder p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.services-cta .cta-phone {
    border-color: white;
    color: white;
}

.services-cta .cta-phone:hover {
    background: white;
    color: #1A90C6;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header h3 {
        font-size: 1.6rem;
    }
    
    .service-detailed {
        padding: 30px 25px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .lab-categories {
        grid-template-columns: 1fr;
    }
    
    .services-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .service-detailed {
        padding: 25px 20px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .lab-category {
        padding: 25px 20px;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, rgba(26, 144, 198, 0.9) 0%, rgba(44, 123, 155, 0.9) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-main {
    padding: 80px 20px;
    background: #f8fafb;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.faq-category h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1A90C6 0%, #87BC35 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    transition: background-color 0.3s;
}

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

.faq-question.active {
    background: #f0f7ff;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #1A90C6;
    font-weight: bold;
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: white;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 30px 30px 30px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    margin: 15px 0;
}

.faq-answer li {
    padding: 5px 0 5px 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.faq-answer li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1A90C6;
    font-weight: bold;
}

.faq-answer ul li ul {
    margin: 10px 0 10px 20px;
}

.faq-answer ul li ul li:before {
    content: "→";
    color: #87BC35;
}

.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer ol li {
    padding: 5px 0;
    color: #666;
    line-height: 1.5;
}

.faq-answer strong {
    color: #333;
    font-weight: 600;
}

.faq-cta {
    background: linear-gradient(135deg, #87BC35 0%, #6FA025 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.faq-cta .cta-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.faq-cta .cta-content p {
    color: white;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.faq-cta .cta-phone {
    border-color: white;
    color: white;
}

.faq-cta .cta-phone:hover {
    background: white;
    color: #87BC35;
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        align-self: flex-end;
        margin-top: -35px;
    }
    
    .faq-answer,
    .faq-answer.active {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .faq-answer.active {
        padding-bottom: 25px;
    }
    
    .faq-category h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer,
    .faq-answer.active {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-answer.active {
        padding-bottom: 20px;
    }
    
    .faq-category h2 {
        font-size: 1.4rem;
    }
    
    .faq-toggle {
        margin-top: -30px;
    }
}
/* =================================================================
   Sticky Mobile CTA Bar
   Only visible on mobile devices (max-width: 768px)
   ================================================================= */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0891B2 0%, #059669 100%);
    padding: 12px 15px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-mobile-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-mobile-cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-mobile-cta-phone:hover,
.sticky-mobile-cta-phone:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.sticky-mobile-cta-phone svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.sticky-mobile-cta-book {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    border: none;
}

.sticky-mobile-cta-book:hover,
.sticky-mobile-cta-book:active {
    background: linear-gradient(135deg, #EA580C 0%, #F97316 100%);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.sticky-mobile-cta-book svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Only show on mobile */
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }
    
    /* Add padding to body so content isn't hidden behind CTA bar */
    body {
        padding-bottom: 75px;
    }
    
    /* Adjust footer bottom padding for mobile */
    .footer {
        padding-bottom: 90px;
    }
    
    /* Ensure accessibility widget and back-to-top buttons don't overlap */
    #accessibility-widget-btn,
    #back-to-top-btn,
    #back-to-top {
        bottom: 85px !important;
    }
    
    /* Adjust cookie banner position on mobile */
    #cookie-banner {
        bottom: 70px !important;
    }
    
    /* Adjust music player on mobile */
    .appwt-theme-song-player {
        bottom: 85px !important;
    }
}

/* Very small screens adjustment */
@media (max-width: 380px) {
    .sticky-mobile-cta-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .sticky-mobile-cta-phone,
    .sticky-mobile-cta-book {
        width: 100%;
    }
    
    body {
        padding-bottom: 130px;
    }
    
    .footer {
        padding-bottom: 145px;
    }
    
    #accessibility-widget-btn,
    #back-to-top-btn,
    #back-to-top {
        bottom: 140px !important;
    }
    
    #cookie-banner {
        bottom: 125px !important;
    }
}

/* ============================================
   Exit Intent Popup Styles
   ============================================ */

/* Overlay */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.exit-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(8, 145, 178, 0.3);
    z-index: 10001;
    max-width: 500px;
    width: 90%;
    padding: 40px 35px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid var(--florida-turquoise);
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Close Button */
.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 5px;
}

.exit-popup-close:hover {
    color: var(--florida-coral);
    transform: rotate(90deg);
}

/* Content */
.exit-popup-content {
    text-align: center;
}

.exit-popup-icon {
    margin-bottom: 20px;
}

.exit-popup-icon svg {
    filter: drop-shadow(0 4px 8px rgba(8, 145, 178, 0.3));
}

#exit-popup-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.exit-popup-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.exit-popup-subtitle strong {
    color: var(--florida-turquoise);
}

/* Benefits List */
.exit-popup-benefits {
    text-align: left;
    background: #f0f9fb;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.exit-popup-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.exit-popup-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--florida-palm);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

/* CTA Button */
.exit-popup-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--florida-coral) 0%, var(--florida-sunset) 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exit-popup-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, var(--florida-sunset) 0%, var(--florida-coral) 100%);
}

/* Phone Link */
.exit-popup-phone {
    margin: 15px 0;
    color: #666;
    font-size: 0.95rem;
}

.exit-popup-phone a {
    color: var(--florida-turquoise);
    text-decoration: none;
    font-weight: 600;
}

.exit-popup-phone a:hover {
    text-decoration: underline;
}

/* Dismiss Button */
.exit-popup-dismiss {
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.exit-popup-dismiss:hover {
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .exit-popup {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    #exit-popup-title {
        font-size: 1.5rem;
    }

    .exit-popup-subtitle {
        font-size: 1rem;
    }

    .exit-popup-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .exit-popup-benefits {
        padding: 15px;
    }

    .exit-popup-benefit {
        font-size: 0.9rem;
    }
}

/* ============================================
   Trust Badges Styles
   ============================================ */

.trust-badges-section {
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    padding: 30px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.15);
    border-color: var(--florida-turquoise);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-icon svg {
    width: 100%;
    height: 100%;
}

.trust-badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.trust-badge-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Mobile Responsive for Trust Badges */
@media (max-width: 768px) {
    .trust-badges-container {
        gap: 15px;
    }

    .trust-badge {
        min-width: 140px;
        padding: 15px 12px;
    }

    .trust-badge-icon {
        width: 40px;
        height: 40px;
    }

    .trust-badge-title {
        font-size: 0.9rem;
    }

    .trust-badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trust-badges-section {
        padding: 20px 15px;
    }

    .trust-badges-container {
        gap: 10px;
    }

    .trust-badge {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        padding: 12px 10px;
    }

    .trust-badge-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .trust-badge-title {
        font-size: 0.8rem;
    }

    .trust-badge-text {
        font-size: 0.75rem;
    }
}
