/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0891B2;
    --primary-light: #06B6D4;
    --primary-dark: #0E7490;
    --accent: #14B8A6;
    --accent-warm: #F59E0B;
    --accent-soft: #67E8F9;
    --bg-light: #F0FDFA;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #64748B;
    --success: #10B981;
    --shadow-sm: 0 4px 12px rgba(8, 145, 178, 0.1);
    --shadow-md: 0 8px 24px rgba(8, 145, 178, 0.15);
    --shadow-lg: 0 16px 48px rgba(8, 145, 178, 0.2);
    --shadow-xl: 0 24px 64px rgba(8, 145, 178, 0.25);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(26, 95, 122, 0.08);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(87, 197, 182, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn-primary, .btn-large, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 1.15rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 25%, #A5F3FC 50%, #67E8F9 75%, #22D3EE 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-medium);
    font-weight: 400;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 2px solid transparent;
    transition: var(--transition);
}

.feature-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-badge .icon {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-cta a {
    flex: 0 0 auto;
    min-width: 220px;
    text-align: center;
    padding: 20px 32px;
    font-size: 1.15rem;
    font-weight: 600;
}

.rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent);
    animation: pulse 3s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.rating-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.stars {
    color: #FFB800;
    font-size: 2rem;
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(255, 184, 0, 0.3);
}

.rating-badge span {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-purple));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06B6D4 0%, #14B8A6 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0891B2 0%, #0D9488 100%);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.service-icon i {
    font-size: 40px;
    color: white;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-image {
    position: relative;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 3/4;
    border: 4px solid white;
    transition: var(--transition);
}

.profile-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 95, 122, 0.3);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 50%, var(--accent-purple) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.image-placeholder svg {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.3);
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(87, 197, 182, 0.03) 0%, rgba(155, 114, 203, 0.03) 100%),
        var(--bg-white);
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent);
    transition: var(--transition);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 250px;
    height: auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .review-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 1.75rem 1.5rem;
        margin: 0;
        overflow: visible;
        min-height: 300px;
        box-sizing: border-box;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.7;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .review-stars {
        margin-bottom: 0.75rem;
        flex-shrink: 0;
    }

    .review-author {
        margin-top: auto;
        flex-shrink: 0;
    }

    .reviews-carousel {
        padding: 0 60px;
        overflow: hidden;
    }

    .reviews-grid {
        gap: 1.5rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }
}

.review-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    color: var(--accent);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.review-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px) scale(1.02);
    border-left-color: var(--accent-purple);
}

.review-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    white-space: normal;
    width: 100%;
}

.review-author {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(87, 197, 182, 0.05) 0%, rgba(155, 114, 203, 0.05) 100%),
        var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.contact-method svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.method-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.method-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--accent-purple), var(--accent-warm));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #E0E8ED;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(87, 197, 182, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-purple), var(--accent-warm), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 0 10px;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
        padding: 0 10px;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .feature-badge span {
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Google Reviews Widget */
.google-reviews-widget {
    margin-bottom: 3rem;
    display: none; /* Hidden until widget is configured */
}

.reviews-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.reviews-cta .btn-large,
.reviews-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reviews-cta i {
    font-size: 1.2rem;
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.reviews-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
    width: max-content;
    align-items: stretch;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.3;
}

.carousel-dot.active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Service Page Styles */
.service-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.badge i {
    color: var(--success);
}

/* Content Layout */
.service-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.main-article {
    max-width: 800px;
}

.article-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Research Cards */
.research-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.research-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.research-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.research-icon i {
    font-size: 28px;
    color: white;
}

.research-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.research-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.research-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(20, 184, 166, 0.05));
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.benefit-icon i {
    font-size: 36px;
    color: var(--primary);
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Indications List */
.indications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.indication-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.indication-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.indication-item i {
    font-size: 24px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 4px;
}

.indication-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.indication-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Therapist Section */
.therapist-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.therapist-card {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.therapist-image {
    width: 200px;
    flex-shrink: 0;
}

.therapist-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.therapist-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.therapist-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.credentials span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.credentials i {
    color: var(--primary);
    width: 20px;
}

.therapist-description {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-align: center;
}

.cta-card h3 {
    color: white;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-card .btn-large {
    width: 100%;
    margin-bottom: 1rem;
    background: white;
    color: var(--primary);
}

.cta-card .btn-large:hover {
    background: var(--bg-light);
}

.cta-card .btn-secondary {
    width: 100%;
    background: transparent;
    color: white;
    border-color: white;
}

.cta-card .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.service-areas,
.related-services {
    list-style: none;
}

.service-areas li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
}

.service-areas li:last-child {
    border-bottom: none;
}

.service-areas i {
    color: var(--primary);
}

.related-services li {
    margin-bottom: 0.75rem;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem;
    color: var(--text-medium);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.related-services a:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(4px);
}

.related-services i {
    color: var(--primary);
    width: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .therapist-card {
        flex-direction: column;
    }

    .therapist-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 40vh;
        padding-top: 100px;
    }

    .research-card {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


/* Treatment Steps */
.treatment-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
}


/* Timing Info */
.timing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.timing-card {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.timing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.timing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.timing-icon i {
    font-size: 36px;
    color: white;
}

.timing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.timing-card p {
    color: var(--text-medium);
    line-height: 1.7;
}


/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}


/* ========================================
   MARKETING PSYCHOLOGY OPTIMIZATION
   ======================================== */

/* Trust Badge at Top of Hero */
.trust-badge-top {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.25);
    border-color: var(--success);
}

.trust-item i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Enhanced Hero Credentials */
.hero-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.credential-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.credential-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-icon i {
    font-size: 24px;
    color: white;
}

.credential-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.credential-text strong {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 700;
}

.credential-text span {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* Enhanced CTA Buttons with Icons */
.btn-primary-cta,
.btn-phone-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-primary-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.btn-phone-cta {
    background: white;
    color: var(--primary);
    border: 3px solid var(--primary);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.3);
}

.btn-phone-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(8, 145, 178, 0.4);
}

/* Availability Badge (Subtle Urgency) */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.15));
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    color: #92400E;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.availability-badge i {
    color: #F59E0B;
    font-size: 1.1rem;
}

/* Enhanced Rating Badge */
.rating-badge-enhanced {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 28px 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--success);
    max-width: 500px;
    margin: 0 auto;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stars-large {
    color: #FFB800;
    font-size: 2.5rem;
    letter-spacing: 6px;
    text-shadow: 0 3px 10px rgba(255, 184, 0, 0.4);
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-text strong {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.rating-text span {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 50px;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.verified-badge i {
    font-size: 1.1rem;
}

/* Trust Indicators in About Section */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(20, 184, 166, 0.05));
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent);
}

.trust-stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Image Badge on Profile Photo */
.about-image {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.4);
    border: 3px solid white;
}

.image-badge i {
    font-size: 1.2rem;
}

/* Sticky Phone Button */
.sticky-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.sticky-phone-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
    animation: none;
}

.sticky-phone-btn i {
    font-size: 1.3rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.sticky-phone-btn:hover i {
    animation: none;
}

/* Contact Section Enhancements */
.contact .section-header {
    margin-bottom: 3rem;
}

.contact-method-primary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 3px solid var(--success);
    position: relative;
    overflow: hidden;
}

.contact-method-primary::before {
    content: 'ΠΡΟΤΕΙΝΕΤΑΙ';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--success);
    color: white;
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.method-note {
    display: block;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

.contact-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(20, 184, 166, 0.05));
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent);
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.reassurance-item i {
    color: var(--success);
    font-size: 1.2rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.15rem;
    padding: 20px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Enhanced Form Inputs */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .trust-badge-top {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .hero-credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .credential-item {
        padding: 16px;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .rating-badge-enhanced {
        padding: 20px 24px;
    }

    .rating-content {
        flex-direction: column;
        text-align: center;
    }

    .stars-large {
        font-size: 2rem;
    }

    .sticky-phone-btn {
        bottom: 20px;
        right: 20px;
        padding: 16px 24px;
        font-size: 0.95rem;
    }

    .sticky-phone-btn span {
        display: none;
    }

    .sticky-phone-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .contact-reassurance {
        flex-direction: column;
        gap: 1rem;
    }

    .image-badge {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}

/* Micro-interactions */
.service-card,
.review-card,
.faq-item,
.contact-method {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.review-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover::after,
.review-card:hover::after {
    width: 500px;
    height: 500px;
}

/* Enhanced Button Hover States */
.btn-large,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-large::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-large:hover::after,
.btn-secondary:hover::after {
    width: 300px;
    height: 300px;
}

/* Smooth Entrance Animations */
.service-card,
.review-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Print Styles (Professional) */
@media print {
    .navbar,
    .hero-cta,
    .sticky-phone-btn,
    .contact-form-wrapper {
        display: none;
    }
}


/* Language Switcher */
.lang-switcher {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.lang-switcher:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .lang-switcher {
        width: auto;
        margin-top: 0;
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .nav-links.active .lang-switcher {
        display: block;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-profile-section {
    text-align: center;
    margin-bottom: 3rem;
}

.about-profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-details {
    flex: 1;
}

.credential-details h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.credential-details p {
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

.credential-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.experience-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.experience-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.experience-item h3 i {
    color: var(--primary);
}

.experience-highlights {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.experience-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.experience-highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.specialization-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.specialization-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.specialization-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.specialization-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.philosophy-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    text-align: center;
}

.pillar-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.pillar h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pillar p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.content-cta {
    background: #164e63;
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
}

.content-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-cta p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-large,
.cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-large {
    background: white;
    color: var(--primary);
}

.cta-buttons .btn-large:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-profile-img {
        width: 200px;
        height: 200px;
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
    
    .specializations-grid {
        grid-template-columns: 1fr;
    }
    
    .content-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-large,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* 9 Hole Peg Test Section Styles */
.peg-test-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.peg-test-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.peg-test-content h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.peg-test-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.peg-test-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.peg-test-benefits li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.peg-test-benefits li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.peg-test-indications {
    margin: 3rem 0;
}

.peg-test-indications h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.indication-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.indication-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.indication-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.indication-box h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.indication-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.peg-test-cta {
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,123,255,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

.peg-test-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.peg-test-cta p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.highlight-text {
    background: rgba(255,255,255,0.25);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.15rem !important;
    margin-top: 1.5rem !important;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff !important;
}

.highlight-text i {
    color: #ffd700;
    margin-right: 0.5rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Responsive Design for Peg Test Section */
@media (max-width: 768px) {
    .peg-test-card {
        padding: 1.5rem;
    }
    
    .peg-test-icon {
        font-size: 2.5rem;
    }
    
    .peg-test-content h3 {
        font-size: 1.5rem;
    }
    
    .indications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .indication-box {
        padding: 1.5rem;
    }
    
    .peg-test-cta {
        padding: 2rem 1.5rem;
    }
    
    .peg-test-cta h3 {
        font-size: 1.5rem;
    }
    
    .peg-test-cta p {
        font-size: 1rem;
    }
}


/* Hero Call Button - RED */
.btn-call-hero {
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%) !important;
    color: white !important;
    font-size: 1.2rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    animation: pulse-red 2s ease-in-out infinite;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(230, 57, 70, 0.7); }
}

.btn-call-hero:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.6);
}

/* Floating Phone Button - RED */
.sticky-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
    z-index: 1000;
}

.sticky-phone-btn:hover {
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.7);
}


/* ========================================
   EQUIPMENT SECTION STYLES
   ======================================== */

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.equipment-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.equipment-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.equipment-category {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.equipment-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.equipment-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.equipment-benefits i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Equipment CTA */
.equipment-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.equipment-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.equipment-cta h3 i {
    color: #FFD700;
    font-size: 2rem;
}

.equipment-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design for Equipment Section */
@media (max-width: 968px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-image {
        height: 220px;
    }
    
    .equipment-content {
        padding: 1.5rem;
    }
    
    .equipment-content h3 {
        font-size: 1.25rem;
    }
    
    .equipment-cta {
        padding: 2rem 1.5rem;
    }
    
    .equipment-cta h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .equipment-cta p {
        font-size: 1rem;
    }
}
