:root {
    --primary-teal: #1A759F;
    --accent-red: #FF6B6B;
    --accent-orange: #FFA454;
    --secondary-green: #4CAF50;
    --light-bg: #F0F8FF;
    --dark-text: #333333;
    --white: #ffffff;
    --font-primary: 'Lato', Arial, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.btn-primary:hover {
    background-color: #e55a5a;
    border-color: #e55a5a;
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-secondary:hover {
    background-color: rgba(26, 117, 159, 0.1);
    transform: translateY(-2px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.005); opacity: 0.98; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    height: 60px;
}

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

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

.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-teal);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-teal);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

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

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--primary-teal);
    font-weight: 500;
    font-size: 0.9rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-teal);
    transition: all var(--transition-base);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    transition: right var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
}

.mobile-cta {
    margin-top: 20px;
}

.mobile-phone {
    color: var(--white);
    font-size: 1rem;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    overflow: hidden;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 5s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.02); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 117, 159, 0.3), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.problem-solution-grid {
    display: grid;
    gap: 60px;
}

.problem-side, .solution-side {
    display: grid;
    gap: 20px;
}

.problem-content, .solution-content {
    padding: 20px;
}

.problem-content h2, .solution-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.problem-content p, .solution-content p {
    color: var(--dark-text);
    line-height: 1.7;
}

.problem-img, .solution-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.solution-content .btn {
    margin-top: 1.5rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.services-overview .section-title {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    gap: 30px;
}

.service-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

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

.service-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-teal);
    font-weight: 600;
    position: relative;
}

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

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

/* Why Renew Section */
.why-renew {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(240, 248, 255, 1));
}

.why-renew .section-title {
    margin-bottom: 3rem;
}

.why-renew-grid {
    display: grid;
    gap: 30px;
}

.why-renew-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.why-renew-card:hover {
    transform: scale(1.02);
}

.why-renew-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.why-renew-icon svg {
    width: 100%;
    height: 100%;
}

.why-renew-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.why-renew-desc {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.testimonials-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.testimonials .section-title {
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-3px) scale(1.005);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-text);
}

.testimonial-role {
    font-size: 0.85rem;
    color: #666;
}

/* CTA Sections */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-teal);
    text-align: center;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-teal);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-bg);
}

/* About Snippet */
.about-snippet {
    padding: 80px 0;
    background-color: var(--white);
}

.about-snippet-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-snippet-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-snippet-content .section-title {
    margin-bottom: 1rem;
}

.about-snippet-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* What to Expect Snippet */
.what-to-expect-snippet {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.what-to-expect-snippet .section-title {
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    gap: 40px;
    margin-bottom: 2rem;
}

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

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.process-icon svg {
    width: 40px;
    height: 40px;
}

.process-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Rates CTA */
.rates-cta {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rates-cta .cta-title {
    color: var(--dark-text);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background-color: var(--accent-red);
    text-align: center;
}

.final-cta .cta-title {
    font-size: 2.2rem;
}

.cta-subtitle {
    color: var(--white);
    opacity: 0.95;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-cta .btn-primary {
    background-color: var(--white);
    color: var(--accent-red);
    border-color: var(--white);
}

.final-cta .btn-primary:hover {
    background-color: var(--light-bg);
}

.final-cta .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.final-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #e8f4f8;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-mission {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--secondary-green);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.footer-heading {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--dark-text);
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-teal);
}

.footer-address {
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-address p {
    font-size: 0.95rem;
    color: var(--dark-text);
}

.footer-phone, .footer-email {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    transition: color var(--transition-base);
}

.footer-phone:hover, .footer-email:hover {
    color: var(--primary-teal);
}

.footer-hours {
    margin: 1rem 0;
}

.footer-hours p {
    font-size: 0.9rem;
    color: var(--dark-text);
}

.footer-directions {
    display: inline-block;
    color: var(--primary-teal);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.footer-social a {
    transition: transform var(--transition-base);
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* ==================== */
/* TABLET STYLES (768px+) */
/* ==================== */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .header-actions {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .problem-solution-grid {
        grid-template-columns: 1fr 1fr;
    }

    .problem-side, .solution-side {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-renew-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-snippet-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-snippet-image img {
        height: 400px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 2fr 2fr;
    }

    .scroll-indicator {
        bottom: 40px;
    }
}

/* ==================== */
/* DESKTOP STYLES (1024px+) */
/* ==================== */
@media (min-width: 1024px) {
    .header {
        height: 80px;
    }

    .header.scrolled {
        height: 65px;
    }

    .logo-img {
        height: 55px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .problem-solution-grid {
        gap: 80px;
    }

    .problem-side, .solution-side {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .problem-side {
        direction: rtl;
    }

    .problem-side > * {
        direction: ltr;
    }

    .problem-img, .solution-img {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-renew-card {
        padding: 40px 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        gap: 60px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer {
        padding: 80px 0 40px;
    }
}

/* ==================== */
/* Page-specific styles */
/* ==================== */

/* About Page */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--primary-teal), #0d4d6b);
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.page-hero h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background-color: var(--white);
}

.service-detail-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.service-detail-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-benefits {
    margin-bottom: 1.5rem;
}

.service-benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.service-expect {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-teal);
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-content {
    padding: 0 20px 20px;
    line-height: 1.7;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    gap: 60px;
}

.contact-methods {
    display: grid;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact-method:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-teal);
}

.contact-method-title {
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 4px;
}

.contact-method-detail {
    font-size: 1rem;
    color: var(--dark-text);
}

.contact-method-instruction {
    font-size: 0.85rem;
    color: #666;
}

.contact-form-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

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

.contact-form-container .btn {
    width: 100%;
}

/* Location & Map */
.location-section {
    padding: 80px 0;
    background-color: var(--white);
}

.location-grid {
    display: grid;
    gap: 40px;
}

.location-info h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.location-address {
    margin-bottom: 1.5rem;
}

.location-address p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location-hours {
    margin-bottom: 1.5rem;
}

.location-hours h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-teal);
}

.location-hours p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.location-parking {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.location-map img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Rates Page */
.rates-section {
    padding: 80px 0;
}

.rate-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.rate-card.featured {
    border: 2px solid var(--accent-orange);
}

.rate-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.rate-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.rate-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.rate-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.rate-includes {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #555;
}

.rates-grid {
    display: grid;
    gap: 30px;
}

/* What to Expect Process */
.expect-process {
    padding: 80px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 80px);
    background-color: var(--primary-teal);
}

.timeline-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.timeline-step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .timeline-step,
    .timeline-step:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-timeline::before {
        display: none;
    }

    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }
}

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

    .location-grid {
        grid-template-columns: 1fr 2fr;
    }

    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .service-detail-image img {
        height: 400px;
    }
}

/* Additional About Page Styles */
.about-philosophy {
    padding: 80px 0;
    background-color: var(--white);
}

.philosophy-grid {
    display: grid;
    gap: 30px;
    margin-top: 3rem;
}

.philosophy-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

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

.philosophy-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.about-story {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.story-quote {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-teal);
    padding: 30px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-teal);
    border-right: 4px solid var(--primary-teal);
    background-color: var(--white);
    border-radius: 8px;
}

.about-team {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    gap: 40px;
    margin-top: 3rem;
}

.team-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-link {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-values {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    gap: 30px;
    margin-top: 3rem;
}

.value-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

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

.value-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Services Intro */
.services-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

/* Dietary & Lifestyle */
.dietary-lifestyle-grid {
    display: grid;
    gap: 30px;
}

.dietary-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.dietary-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

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

.dietary-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.dietary-card p {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

/* What to Expect Additional */
.expect-consultation {
    padding: 80px 0;
    background-color: var(--white);
}

.consultation-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.consultation-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    font-family: var(--font-secondary);
}

.consultation-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.expect-treatment {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.treatment-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.treatment-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.treatment-aspects {
    display: grid;
    gap: 30px;
}

.treatment-aspect {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.treatment-aspect-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-aspect-icon svg {
    width: 35px;
    height: 35px;
}

.treatment-aspect h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.treatment-aspect p {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.expect-aftercare {
    padding: 80px 0;
    background-color: var(--white);
}

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

/* Rates Additional */
.initial-consultation-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.consultation-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-teal);
    font-family: var(--font-secondary);
}

.consultation-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.herbal-info {
    max-width: 800px;
    margin: 0 auto;
}

.herbal-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.insurance-grid {
    display: grid;
    gap: 30px;
}

.insurance-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.insurance-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.insurance-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.value-proposition {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), var(--light-bg));
}

.value-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    max-width: 800px;
    margin: 1.5rem auto 0;
}

/* Contact Additional */
.contact-method-info {
    flex: 1;
}

.contact-method-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.location-transit {
    margin-bottom: 1.5rem;
}

.location-transit h3 {
    font-size: 1.1rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.location-transit p {
    font-size: 0.95rem;
    color: var(--dark-text);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-image img {
        height: 350px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dietary-lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consultation-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .consultation-image img {
        height: 400px;
    }
    
    .treatment-aspects {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .philosophy-card {
        padding: 40px 30px;
    }
    
    .team-grid {
        gap: 50px;
    }
    
    .team-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .team-image img {
        height: 100%;
    }
}
