/* =============================================
   ATA FİZYOTERAPİ - Premium Design System
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
    /* Colors */
    --primary: #0D7377;
    --primary-light: #14919B;
    --primary-dark: #095A5D;
    --primary-glow: rgba(13, 115, 119, 0.15);
    --accent: #38B2AC;
    --accent-light: #81E6D9;

    --dark: #0A2342;
    --dark-soft: #1A3A5C;
    --text: #E2E8F0;
    --text-light: #A0AEC0;
    --text-muted: #718096;

    --bg: #0D2137;
    --bg-soft: #0A1B2E;
    --bg-alt: #112A45;
    --bg-card: rgba(255, 255, 255, 0.05);

    --white: #FFFFFF;
    --border: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0A2342 0%, #0D7377 50%, #14919B 100%);
    --gradient-primary: linear-gradient(135deg, #0D7377, #14919B);
    --gradient-accent: linear-gradient(135deg, #38B2AC, #81E6D9);
    --gradient-dark: linear-gradient(135deg, #0A2342 0%, #1A3A5C 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(13, 115, 119, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Utility ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section {
    padding: var(--section-padding) 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(13, 115, 119, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 115, 119, 0.45);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 27, 46, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar.scrolled .brand-icon {
    width: 40px;
    height: 40px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition);
}

.navbar.scrolled .brand-name {
    color: var(--white);
}

.brand-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.navbar.scrolled .brand-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
    margin-left: 8px;
    backdrop-filter: blur(10px);
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    border-color: var(--white);
}

.navbar.scrolled .nav-cta {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white) !important;
}

.navbar.scrolled .nav-cta:hover {
    box-shadow: 0 4px 20px rgba(13, 115, 119, 0.35);
    transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .toggler-line {
    background: var(--white);
}

.navbar-toggler.active .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(20, 145, 155, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 178, 172, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(10, 35, 66, 0.3) 0%, transparent 70%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 35, 66, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px 48px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    max-width: 640px;
    margin: 0 auto;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background: var(--bg-soft);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.about-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.exp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.about-experience-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--white);
}

.about-experience-badge span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    background: var(--bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    padding: 36px 28px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon-1 {
    background: rgba(56, 178, 172, 0.2);
    color: #81E6D9;
}

.service-icon-2 {
    background: rgba(56, 178, 172, 0.2);
    color: #4FD1C5;
}

.service-icon-3 {
    background: rgba(13, 115, 119, 0.25);
    color: #38B2AC;
}

.service-icon-4 {
    background: rgba(20, 145, 155, 0.2);
    color: #81E6D9;
}

.service-icon-5 {
    background: rgba(56, 178, 172, 0.2);
    color: #4FD1C5;
}

.service-icon-6 {
    background: rgba(13, 115, 119, 0.25);
    color: #38B2AC;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-footer {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    background: var(--bg-soft);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .brand-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.footer-logo .brand-name {
    font-size: 1.1rem;
    color: var(--white);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.footer-contact svg {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   VIDEOS SECTION
   ============================================= */
.videos {
    background: var(--bg);
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.video-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.video-card iframe {
    display: block;
    width: 100%;
    min-height: 480px;
    border: none;
}

.video-card video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    max-height: 520px;
    object-fit: cover;
    background: #000;
}

.video-placeholder {
    aspect-ratio: 9/16;
    max-height: 480px;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

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

.videos-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* =============================================
   REVIEWS SECTION (Dark Theme)
   ============================================= */
.reviews {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(13, 115, 119, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 178, 172, 0.15) 0%, transparent 50%);
}

.reviews .container {
    position: relative;
    z-index: 1;
}

.section-label-light {
    background: rgba(56, 178, 172, 0.15) !important;
    color: var(--accent-light) !important;
    border-color: rgba(56, 178, 172, 0.3) !important;
}

.reviews-title {
    color: var(--white) !important;
}

.text-accent-light {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9rem;
    margin-top: 16px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.reviews-carousel {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    scroll-snap-align: start;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-author {
    flex: 1;
}

.review-author strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.review-author span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

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

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-review:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.reviews-embed iframe {
    width: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 20px;
}

/* =============================================
   FLOATING BUTTONS (Instagram + WhatsApp)
   ============================================= */
.instagram-float {
    position: fixed;
    bottom: 102px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    transition: var(--transition);
    animation: pulse-instagram 2s ease-in-out infinite;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.5);
}

.instagram-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateX(10px);
}

.instagram-float:hover .instagram-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-instagram {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(225, 48, 108, 0.6), 0 0 0 10px rgba(225, 48, 108, 0.1);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for cards */
.services-grid [data-reveal]:nth-child(1) {
    transition-delay: 0.05s;
}

.services-grid [data-reveal]:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid [data-reveal]:nth-child(3) {
    transition-delay: 0.15s;
}

.services-grid [data-reveal]:nth-child(4) {
    transition-delay: 0.2s;
}

.services-grid [data-reveal]:nth-child(5) {
    transition-delay: 0.25s;
}

.services-grid [data-reveal]:nth-child(6) {
    transition-delay: 0.3s;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

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

    .videos-grid .video-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }

    .review-card {
        flex: 0 0 calc(50% - 12px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    /* Mobile Nav */
    .navbar-toggler {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 40px;
        gap: 8px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .navbar-nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        padding: 12px 16px;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
    }

    .navbar.scrolled .nav-link {
        color: rgba(255, 255, 255, 0.8);
    }

    .navbar.scrolled .nav-link:hover,
    .navbar.scrolled .nav-link.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
        background: var(--gradient-primary) !important;
        border-color: transparent !important;
    }

    .navbar.scrolled .nav-cta {
        background: var(--gradient-primary) !important;
    }

    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* Hero */
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-actions {
        margin-bottom: 36px;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px;
        flex-direction: column;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

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

    .section-description {
        font-size: 0.92rem;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-image {
        aspect-ratio: 4/3;
    }

    .about-experience-badge {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 12px 14px;
        gap: 10px;
    }

    .exp-icon {
        width: 36px;
        height: 36px;
    }

    .about-experience-badge strong {
        font-size: 0.82rem;
    }

    .about-experience-badge span {
        font-size: 0.72rem;
    }

    .about-text {
        font-size: 0.92rem;
    }

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

    .about-feature {
        font-size: 0.82rem;
        padding: 10px 12px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .service-card {
        padding: 28px 22px 22px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .service-title {
        font-size: 1.05rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 18px;
        gap: 14px;
    }

    .contact-card-icon {
        width: 46px;
        height: 46px;
    }

    .contact-card-content h3 {
        font-size: 0.92rem;
    }

    .contact-card-content p {
        font-size: 0.85rem;
    }

    .contact-map {
        min-height: 280px;
    }

    .contact-map iframe {
        min-height: 280px;
    }

    /* Footer */
    .footer {
        padding-top: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 18px 0;
        font-size: 0.75rem;
    }

    /* WhatsApp & Instagram */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .instagram-float {
        bottom: 82px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .instagram-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip,
    .instagram-tooltip {
        display: none;
    }

    /* Videos */
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto 40px;
    }

    .videos-grid .video-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .video-card iframe {
        min-height: 400px;
    }

    /* Reviews */
    .review-card {
        flex: 0 0 85%;
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
        gap: 4px;
    }

    .hero-badge svg {
        width: 12px;
        height: 12px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 28px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        padding: 16px;
        gap: 12px;
    }

    .hero-stat-number {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .brand-subtitle {
        display: none;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

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

    .about-image {
        aspect-ratio: 1/1;
    }
}