/* ============================================
   CARDIOVIDA - Professional Stylesheet
   Instituto de Cardiología Intervencionista
   Colors: Navy Blue #1B2B6B | Red #E2001A
   ============================================ */

/* ====== CSS VARIABLES ====== */
:root {
    --primary: #1B2B6B;
    --primary-dark: #111d4a;
    --primary-light: #2a3f8f;
    --primary-rgb: 27, 43, 107;

    --accent: #E2001A;
    --accent-dark: #b8001a;
    --accent-light: #ff1a3a;
    --accent-rgb: 226, 0, 26;

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 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;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.3;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.text-accent {
    color: var(--accent);
}

/* ====== PRELOADER ====== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.heartbeat-loader i {
    font-size: 60px;
    color: var(--accent);
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    70% { transform: scale(1); }
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

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

.navbar-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    border-radius: 8px;
}

.navbar.scrolled .navbar-logo img {
    height: 45px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-nav {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: var(--radius-xl) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(var(--accent-rgb), 0.4);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px 9px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    transition: var(--transition);
    position: relative;
}

.navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggle:active {
    transform: scale(0.95);
}

.navbar.scrolled .navbar-toggle {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.navbar.scrolled .navbar-toggle:hover {
    background: rgba(var(--primary-rgb), 0.15);
    border-color: rgba(var(--primary-rgb), 0.35);
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.navbar.scrolled .navbar-toggle span {
    background: var(--primary);
}

.navbar-toggle.active {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.navbar-toggle.active span {
    background: var(--accent);
}

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

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ====== SECTION HEADERS ====== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== HERO SECTION ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(var(--accent-rgb), 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    animation: pulse-expand 6s ease-out infinite;
}

.pulse-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.pulse-2 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.pulse-3 {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes pulse-expand {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 120px 20px 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.15);
    border-radius: var(--radius-xl);
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent-light);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--accent-light);
    font-size: 1rem;
}

/* Hero Card */
.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon i {
    font-size: 36px;
    color: var(--white);
}

.hero-card-ecg {
    margin-bottom: 24px;
    overflow: hidden;
}

.ecg-line {
    width: 100%;
    height: 60px;
}

.ecg-path {
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: ecg-draw 3s linear infinite;
}

@keyframes ecg-draw {
    0% { stroke-dashoffset: 1200; }
    100% { stroke-dashoffset: 0; }
}

.hero-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.hero-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-scroll-indicator span {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    animation: scroll-bounce 2s infinite;
}

.hero-scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 0; transform: rotate(45deg) translateY(0); }
    50% { opacity: 1; transform: rotate(45deg) translateY(10px); }
}

/* ====== ABOUT SECTION ====== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-img-wrapper {
    position: relative;
    width: 350px;
    height: 400px;
    margin: 0 auto;
}

.about-img-bg {
    position: absolute;
    inset: 20px 0 -20px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    opacity: 0.15;
}

.about-img-main {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img-main i {
    font-size: 120px;
    color: rgba(255,255,255,0.2);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2;
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
}

.about-description {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 22px;
    color: var(--primary);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--gray-800);
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ====== STATS ====== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ====== SERVICES SECTION ====== */
.services {
    background: var(--gray-50);
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

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

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

.service-card.featured {
    border-color: var(--accent);
    position: relative;
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 1;
}

.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-icon {
    width: 65px;
    height: 65px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--primary);
}

.service-card-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-card-icon i {
    color: var(--white);
}

.service-card.featured .service-card-icon {
    background: rgba(var(--accent-rgb), 0.08);
}

.service-card.featured .service-card-icon i {
    color: var(--accent);
}

.service-card.featured:hover .service-card-icon {
    background: var(--accent);
}

.service-card.featured:hover .service-card-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card > p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.service-features li i {
    color: var(--success);
    font-size: 0.75rem;
}

/* ====== PROCEDURES SECTION ====== */
.procedure-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.procedure-block:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.procedure-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.procedure-icon-wrapper.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.procedure-icon-wrapper i {
    font-size: 30px;
    color: var(--white);
}

.procedure-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.procedure-content > p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 800px;
}

.procedure-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.procedure-detail h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.procedure-detail h4 i {
    color: var(--accent);
}

.procedure-detail ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.procedure-detail li {
    padding-left: 16px;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.procedure-detail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Procedure Benefits Grid */
.procedure-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(var(--accent-rgb), 0.05);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 20px;
    color: var(--accent);
    min-width: 24px;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Procedure Detect Grid */
.procedure-detect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.detect-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.detect-item:hover {
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-5px);
}

.detect-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detect-icon i {
    font-size: 22px;
    color: var(--primary);
}

.detect-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.detect-item p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ====== WHY US SECTION ====== */
.why-us {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1), transparent 70%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
}

.why-card-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.why-card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: rgba(var(--accent-rgb), 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon i {
    font-size: 26px;
    color: var(--accent-light);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ====== TEAM SECTION ====== */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-card-photo {
    position: relative;
    overflow: hidden;
}

.team-photo-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-photo-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.3), transparent);
}

.team-photo-placeholder i {
    font-size: 80px;
    color: rgba(255,255,255,0.2);
}

.team-card-social {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.team-card:hover .team-card-social {
    opacity: 1;
    transform: translateY(0);
}

.team-card-social a {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.team-card-info {
    padding: 24px;
}

.team-card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.team-role {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.team-card-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-specialties span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.team-specialties span i {
    font-size: 0.7rem;
    color: var(--accent);
}

.team-cta {
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.team-cta p {
    font-size: 1.05rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ====== LOCATIONS SECTION ====== */
.locations {
    background: var(--gray-50);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.location-card-header {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card-header i {
    font-size: 28px;
    color: var(--white);
}

.location-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.location-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.location-link:hover {
    gap: 10px;
}

.online-consult {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary);
    padding: 32px 40px;
}

.online-consult-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.online-consult-content > i {
    font-size: 40px;
    color: var(--primary);
    min-width: 50px;
}

.online-consult h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.online-consult p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.online-consult .btn {
    margin-left: auto;
    white-space: nowrap;
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials {
    background: var(--white);
    overflow: hidden;
}

.testimonials-swiper {
    padding: 20px 10px 60px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-stars {
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 20px;
    color: var(--white);
}

.testimonial-author h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Swiper Custom Styles */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    color: var(--white);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* ====== HEALTH TIPS SECTION ====== */
.health-tips {
    background: var(--gray-50);
}

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

.tip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tip-card-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tip-card-icon.warning {
    background: rgba(245, 158, 11, 0.1);
}

.tip-card-icon.warning i {
    font-size: 28px;
    color: var(--warning);
}

.tip-card-icon.alert {
    background: rgba(239, 68, 68, 0.1);
}

.tip-card-icon.alert i {
    font-size: 28px;
    color: var(--danger);
}

.tip-card-icon.positive {
    background: rgba(var(--accent-rgb), 0.1);
}

.tip-card-icon.positive i {
    font-size: 28px;
    color: var(--accent);
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tip-card > p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.tip-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tip-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.tip-list li i {
    font-size: 0.85rem;
    min-width: 16px;
}

.tip-list li .fa-triangle-exclamation {
    color: var(--warning);
}

.tip-list li .fa-circle-info {
    color: var(--primary);
}

.positive-list li .fa-circle-check {
    color: var(--success);
}

.tip-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.tip-cta:hover {
    gap: 12px;
    color: var(--accent-dark);
}

/* ====== CTA BANNER ====== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.cta-icon i {
    font-size: 36px;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

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

/* ====== CONTACT SECTION ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

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

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: rgba(var(--primary-rgb), 0.05);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-card a {
    color: var(--accent);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--accent-dark);
}

.contact-info-card p,
.contact-info-card span {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.contact-social {
    margin-top: 10px;
}

.contact-social h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray-600);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--gray-400);
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--gray-800);
    transition: var(--transition);
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper:has(input:focus) > i,
.input-wrapper:has(select:focus) > i,
.input-wrapper:has(textarea:focus) > i {
    color: var(--primary);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 16px;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--gray-900);
    padding: 70px 0 0;
    overflow: hidden;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-400);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ====== WHATSAPP FLOATING ====== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

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

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN - FULL MOBILE SUPPORT
   ============================================ */

/* ====== TABLET LANDSCAPE (max-width: 1024px) ====== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 80px 0;
    }

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

    .hero-content {
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        gap: 50px;
    }

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

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

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

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

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

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

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

    .tips-grid .tip-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        gap: 32px;
    }

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

    .swiper-button-prev,
    .swiper-button-next {
        width: 42px;
        height: 42px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }
}

/* ====== TABLET PORTRAIT (max-width: 768px) ====== */
@media (max-width: 768px) {
    /* Force disable AOS horizontal animations that cause overflow */
    [data-aos="fade-right"],
    [data-aos="fade-left"],
    [data-aos="slide-right"],
    [data-aos="slide-left"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Override AOS initialized states too */
    [data-aos="fade-right"].aos-animate,
    [data-aos="fade-left"].aos-animate,
    [data-aos="slide-right"].aos-animate,
    [data-aos="slide-left"].aos-animate {
        opacity: 1 !important;
        transform: none !important;
    }

    html {
        scroll-padding-top: 70px;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section {
        padding: 60px 0;
        overflow: hidden;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    /* ---- Navbar Mobile ---- */
    .navbar {
        padding: 10px 0;
    }

    .navbar.scrolled {
        padding: 6px 0;
    }

    .navbar-logo img {
        height: 45px;
    }

    .navbar.scrolled .navbar-logo img {
        height: 40px;
    }

    .navbar-toggle {
        display: flex;
        order: 3;
    }

    .navbar-menu {
        order: 2;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85vw;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 90px 24px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
        visibility: hidden;
    }

    .navbar-menu.active {
        right: 0;
        visibility: visible;
    }

    .nav-link {
        color: var(--gray-700) !important;
        padding: 14px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(var(--primary-rgb), 0.05);
        color: var(--accent) !important;
    }

    .btn-nav {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        border-bottom: none !important;
        padding: 14px 24px !important;
    }

    /* Mobile menu overlay */
    .navbar-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0,0,0,0.4);
        z-index: -1;
        pointer-events: none;
    }

    /* ---- Hero Mobile ---- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 16px 50px;
        gap: 30px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

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

    .about-image {
        order: -1;
        overflow: hidden;
    }

    .about-img-wrapper {
        width: 240px;
        height: 280px;
    }

    .about-img-bg {
        inset: 15px 0 -15px 15px;
    }

    .about-experience-badge {
        right: 0;
        bottom: -15px;
        padding: 14px 18px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .about-content {
        text-align: left;
    }

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

    .about-feature {
        gap: 14px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .stat-icon i {
        font-size: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* ---- Services Mobile ---- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .service-card-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card > p {
        font-size: 0.85rem;
    }

    /* ---- Procedures Mobile ---- */
    .procedure-block {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .procedure-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .procedure-icon-wrapper i {
        font-size: 24px;
    }

    .procedure-content h3 {
        font-size: 1.2rem;
    }

    .procedure-content > p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .procedure-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .procedure-benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-item {
        padding: 14px 16px;
    }

    .procedure-detect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .detect-item {
        padding: 18px 12px;
    }

    .detect-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .detect-icon i {
        font-size: 20px;
    }

    .detect-item h4 {
        font-size: 0.85rem;
    }

    .detect-item p {
        font-size: 0.75rem;
    }

    /* ---- Why Us Mobile ---- */
    .why-us {
        padding: 60px 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 14px;
    }

    .why-card h3 {
        font-size: 1rem;
    }

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

    .why-card-number {
        font-size: 3rem;
    }

    /* ---- Team Mobile ---- */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        display: flex;
        flex-direction: row;
    }

    .team-card-photo {
        min-width: 140px;
        width: 140px;
    }

    .team-photo-placeholder {
        height: 100%;
        min-height: 200px;
    }

    .team-photo-placeholder i {
        font-size: 50px;
    }

    .team-card-social {
        opacity: 1;
        transform: translateY(0);
        bottom: 8px;
        right: 8px;
    }

    .team-card-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .team-card-info {
        padding: 18px 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .team-card-info h3 {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }

    .team-card-info p {
        font-size: 0.82rem;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .team-specialties span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .team-cta {
        padding: 24px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .team-cta p {
        font-size: 0.92rem;
    }

    /* ---- Locations Mobile ---- */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .location-card {
        padding: 24px 16px;
    }

    .location-card-header {
        width: 55px;
        height: 55px;
        margin-bottom: 14px;
    }

    .location-card-header i {
        font-size: 24px;
    }

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

    .online-consult {
        padding: 24px 20px;
    }

    .online-consult-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .online-consult-content > i {
        font-size: 32px;
    }

    .online-consult h3 {
        font-size: 1.05rem;
    }

    .online-consult .btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    /* ---- Testimonials Mobile ---- */
    .testimonials-swiper {
        padding: 10px 5px 50px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .testimonial-author {
        gap: 10px;
    }

    .author-avatar {
        width: 42px;
        height: 42px;
    }

    .author-avatar i {
        font-size: 18px;
    }

    .testimonial-author h4 {
        font-size: 0.88rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 24px;
    }

    /* ---- Tips Mobile ---- */
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tips-grid .tip-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .tip-card {
        padding: 24px 20px;
    }

    .tip-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .tip-card-icon i {
        font-size: 24px;
    }

    .tip-card h3 {
        font-size: 1.08rem;
    }

    .tip-card > p {
        font-size: 0.85rem;
    }

    .tip-list li {
        font-size: 0.85rem;
    }

    /* ---- CTA Banner Mobile ---- */
    .cta-banner {
        padding: 50px 0;
    }

    .cta-icon {
        width: 65px;
        height: 65px;
    }

    .cta-icon i {
        font-size: 28px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .cta-banner p {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
        gap: 12px;
    }

    .cta-buttons .btn {
        justify-content: center;
        padding: 14px 20px;
    }

    /* ---- Contact Mobile ---- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .contact-info-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .contact-info-icon i {
        font-size: 20px;
    }

    .contact-info-card h4 {
        font-size: 0.88rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 14px 12px 40px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-full {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* ---- Footer Mobile ---- */
    .footer {
        padding: 50px 0 0;
    }

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

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

    .footer-logo {
        height: 50px;
        margin: 0 auto 12px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
    }

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

    .footer-links a {
        font-size: 0.85rem;
        padding: 4px 0;
    }

    .footer-contact li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* ---- Floating Buttons Mobile ---- */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 26px;
        bottom: 20px;
        right: 16px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 80px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ====== SMALL PHONES (max-width: 576px) ====== */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .section {
        padding: 50px 0;
        overflow: hidden;
    }

    .section-title {
        font-size: 1.65rem;
        letter-spacing: -0.3px;
    }

    .section-subtitle {
        font-size: 0.88rem;
        padding: 0 8px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    /* Hero */
    .hero-content {
        padding: 90px 12px 40px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
        gap: 6px;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.88rem;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .trust-item {
        font-size: 0.78rem;
    }

    /* About */
    .about-img-wrapper {
        width: 200px;
        height: 230px;
    }

    .about-img-main i {
        font-size: 80px;
    }

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

    .exp-number {
        font-size: 1.6rem;
    }

    .exp-text {
        font-size: 0.7rem;
    }

    .about-description {
        font-size: 0.88rem;
    }

    .about-features {
        gap: 16px;
        margin-top: 24px;
    }

    .about-feature h4 {
        font-size: 0.92rem;
    }

    .about-feature p {
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    /* Services */
    .services-grid {
        gap: 14px;
    }

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

    .service-card-icon {
        width: 50px;
        height: 50px;
    }

    .service-card-icon i {
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card > p {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .service-card-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    /* Procedures */
    .procedure-block {
        padding: 20px 16px;
        margin-bottom: 16px;
        border-radius: var(--radius-md);
    }

    .procedure-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .procedure-icon-wrapper i {
        font-size: 22px;
    }

    .procedure-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .procedure-content > p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .procedure-detail h4 {
        font-size: 0.9rem;
    }

    .procedure-detail li {
        font-size: 0.82rem;
    }

    .benefit-item {
        padding: 12px 14px;
    }

    .benefit-item i {
        font-size: 18px;
    }

    .benefit-item span {
        font-size: 0.85rem;
    }

    .procedure-detect-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .detect-item {
        padding: 14px 10px;
    }

    .detect-icon {
        width: 42px;
        height: 42px;
    }

    .detect-icon i {
        font-size: 18px;
    }

    .detect-item h4 {
        font-size: 0.8rem;
    }

    .detect-item p {
        font-size: 0.72rem;
    }

    /* Why Us */
    .why-card {
        padding: 22px 18px;
    }

    .why-card-icon {
        width: 50px;
        height: 50px;
    }

    .why-card-icon i {
        font-size: 22px;
    }

    .why-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 0.82rem;
    }

    .why-card-number {
        font-size: 2.5rem;
    }

    /* Team */
    .team-card {
        flex-direction: column;
    }

    .team-card-photo {
        min-width: auto;
        width: 100%;
    }

    .team-photo-placeholder {
        height: 180px;
        min-height: auto;
    }

    .team-photo-placeholder i {
        font-size: 60px;
    }

    .team-card-info {
        padding: 16px 14px;
    }

    .team-card-info h3 {
        font-size: 0.95rem;
    }

    .team-card-info p {
        -webkit-line-clamp: unset;
    }

    .team-cta {
        padding: 20px 16px;
    }

    .team-cta p {
        font-size: 0.88rem;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .location-card {
        padding: 20px 12px;
    }

    .location-card-header {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .location-card-header i {
        font-size: 20px;
    }

    .location-card h3 {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .location-card p {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }

    .location-link {
        font-size: 0.8rem;
    }

    .online-consult {
        padding: 20px 16px;
    }

    .online-consult-content > i {
        font-size: 28px;
    }

    .online-consult h3 {
        font-size: 1rem;
    }

    .online-consult p {
        font-size: 0.82rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px 16px;
    }

    .testimonial-stars i {
        font-size: 0.88rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
    }

    .author-avatar i {
        font-size: 16px;
    }

    .testimonial-author h4 {
        font-size: 0.82rem;
    }

    .testimonial-author span {
        font-size: 0.72rem;
    }

    /* Tips */
    .tip-card {
        padding: 22px 18px;
    }

    .tip-card-icon {
        width: 50px;
        height: 50px;
    }

    .tip-card-icon i {
        font-size: 22px;
    }

    .tip-card h3 {
        font-size: 1rem;
    }

    .tip-card > p {
        font-size: 0.82rem;
    }

    .tip-list li {
        font-size: 0.82rem;
        gap: 8px;
    }

    .tip-cta {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-banner {
        padding: 40px 0;
    }

    .cta-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .cta-icon i {
        font-size: 24px;
    }

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    .cta-banner p {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .cta-buttons {
        padding: 0 16px;
    }

    .cta-buttons .btn {
        font-size: 0.88rem;
        padding: 12px 18px;
    }

    /* Contact */
    .contact-info-card {
        padding: 14px 12px;
        gap: 12px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .contact-info-icon i {
        font-size: 18px;
    }

    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .contact-form {
        gap: 16px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 12px 12px 38px;
        font-size: 16px;
    }

    .input-wrapper i {
        left: 12px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-logo {
        height: 45px;
    }

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

    /* Floating */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 16px;
        right: 14px;
    }

    .back-to-top {
        bottom: 16px;
        right: 74px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ====== EXTRA SMALL PHONES (max-width: 400px) ====== */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
    }

    .section {
        padding: 40px 0;
        overflow: hidden;
    }

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

    .section-subtitle {
        font-size: 0.82rem;
    }

    .hero-content {
        padding: 85px 8px 35px;
    }

    .hero-badge {
        font-size: 0.68rem;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    .about-img-wrapper {
        width: 180px;
        height: 210px;
    }

    .about-img-main i {
        font-size: 65px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .stat-card {
        padding: 16px 10px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 16px;
    }

    .service-card {
        padding: 18px 14px;
    }

    .procedure-block {
        padding: 18px 14px;
    }

    .procedure-detect-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        gap: 16px;
    }

    .team-photo-placeholder {
        height: 160px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 20px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-banner h2 {
        font-size: 1.25rem;
    }

    .cta-banner p {
        font-size: 0.82rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }
}

/* ====== SAFE AREA (Notched phones) ====== */
@supports (padding: env(safe-area-inset-bottom)) {
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .footer-bottom {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .navbar-menu {
        padding-bottom: calc(30px + env(safe-area-inset-bottom));
    }
}

/* ====== TOUCH DEVICE OPTIMIZATIONS ====== */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover transforms on touch devices to prevent sticky states */
    .service-card:hover {
        transform: none;
    }

    .service-card:hover .service-card-icon {
        background: rgba(var(--primary-rgb), 0.08);
    }

    .service-card:hover .service-card-icon i {
        color: var(--primary);
    }

    .service-card.featured:hover .service-card-icon {
        background: rgba(var(--accent-rgb), 0.08);
    }

    .service-card.featured:hover .service-card-icon i {
        color: var(--accent);
    }

    .stat-card:hover {
        transform: none;
    }

    .location-card:hover {
        transform: none;
    }

    .tip-card:hover {
        transform: none;
    }

    .why-card:hover {
        transform: none;
    }

    .team-card:hover {
        transform: none;
    }

    .team-card-social {
        opacity: 1;
        transform: translateY(0);
    }

    .benefit-item:hover {
        transform: none;
    }

    .detect-item:hover {
        transform: none;
    }

    .social-links a:hover {
        transform: none;
    }

    .footer-social a:hover {
        transform: none;
    }

    .back-to-top:hover {
        transform: none;
    }

    /* Larger tap targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 48px;
    }

    .social-links a,
    .footer-social a {
        min-width: 44px;
        min-height: 44px;
    }

    .location-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ====== LANDSCAPE PHONE ====== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

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

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

    .hero p {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .hero-trust {
        flex-direction: row;
        gap: 20px;
    }

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

    .section {
        padding: 40px 0;
    }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-card {
        animation: none;
    }

    .ecg-path {
        animation: none;
        stroke-dashoffset: 0;
    }

    .whatsapp-float {
        animation: none;
    }

    .cta-icon {
        animation: none;
    }

    .heartbeat-loader i {
        animation: none;
    }
}
