
html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    overflow-y: scroll; /* <-- ДОБАВИТЬ ЭТУ СТРОКУ */
}

/* ===================================



   RESET & BASE STYLES
   =================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - New Palette */
    --primary-color: #5B9AA9;
    --primary-hover: #4a8896;
    --secondary-color: #F5F1ED;
    --text-dark: #4A4A4A;
    --text-light: #6A6A6A;
    --white: #FFFFFF;
    --accent: #7BAAB5;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --overlay: rgba(0, 0, 0, 0.5);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-size-base: 16px;
    --line-height: 1.7;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: var(--line-height);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: none;
}

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

ul {
    list-style-position: inside;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-small {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    font-family: var(--font-heading);
    cursor: pointer;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91, 154, 169, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 154, 169, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 998;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--shadow-hover);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-sm);
    max-height: 70px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-title {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 999;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    list-style: none;
    box-shadow: -5px 0 15px var(--shadow);
    transition: right 0.4s ease;
    overflow-y: auto;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-link-cta {
    color: var(--primary-color);
    font-weight: 600;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 2rem;
        box-shadow: none;
        background: transparent;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
}

/* ===================================
   FIXED WHATSAPP BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    color: var(--white);
    padding: calc(70px + var(--spacing-md)) 0 var(--spacing-lg);
    text-align: center;
    position: relative;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.hero-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
}

.hero-specializations {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    opacity: 0.85;
    font-style: italic;
}
@media (max-width: 768px) {
    .hero-specializations {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .spec-separator {
        display: none;
    }
}
.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.9;
    display: block;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.info-badge svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   DIRECTIONS SECTION
   =================================== */
.directions {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.direction-card {
    background: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.direction-card .direction-preview {
    flex-grow: 1;
}

.direction-card .direction-btn {
    margin-top: auto;
}

.direction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-hover);
    border-color: var(--primary-color);
}

.direction-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-color);
}

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

.direction-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.direction-preview {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.direction-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.direction-btn:hover {
    background: var(--primary-hover);
}

/* ===================================
   DIRECTION DETAILS (MODAL-STYLE)
   =================================== */
.direction-details {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 999;
    overflow-y: auto;
    padding: var(--spacing-sm);
}

.direction-details.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.detail-content {
    display: none;
    background: var(--white);
    max-width: 900px;
    width: 100%;
    padding: var(--spacing-md);
    padding-top: calc(var(--spacing-md) + 60px);
    border-radius: 12px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@media (min-width: 768px) {
    .direction-details {
        padding: var(--spacing-lg);
    }

    .direction-details.active {
        align-items: center;
        padding-top: 0;
    }

    .detail-content {
        padding: var(--spacing-xl);
        padding-top: calc(var(--spacing-xl) + 60px);
    }
}

.detail-content.active {
    display: block;
}

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

.close-detail {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow);
}

.close-detail:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.detail-content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    padding-right: 40px;
}

.detail-section {
    margin-bottom: var(--spacing-lg);
}

.detail-section h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 600;
}

.detail-section p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.detail-section ul {
    color: var(--text-dark);
    line-height: 1.9;
    padding-left: var(--spacing-md);
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.detail-section ul li {
    margin-bottom: 0.7rem;
}

.detail-section.approach {
    background: var(--secondary-color);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.detail-section.result {
    background: linear-gradient(135deg, rgba(91, 154, 169, 0.1) 0%, rgba(123, 170, 181, 0.1) 100%);
    padding: var(--spacing-lg);
    border-radius: 12px;
}

.detail-content .btn {
    display: block;
    text-align: center;
    margin: var(--spacing-lg) auto 0;
    max-width: 300px;
}

/* ===================================
   FIRST SESSION SECTION
   =================================== */
.first-session {
    padding: var(--spacing-xxl) 0;
    background: var(--secondary-color);
}

.session-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   CREDENTIALS SECTION
   =================================== */
.credentials {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.credentials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    overflow: hidden;
}

.credential-card {
    display: none;
    background: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
    opacity: 0;
    transform: translateX(50px);
}

.credential-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.5s ease forwards;
}

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

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.credential-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.credential-card:hover .credential-image img {
    transform: scale(1.05);
}

.credential-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(91, 154, 169, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.credential-card:hover .credential-overlay {
    opacity: 1;
}

.view-credential {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.view-credential:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.view-credential svg {
    width: 24px;
    height: 24px;
}

.credential-info {
    padding: var(--spacing-lg);
}

.credential-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.credential-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Slider Dots for Credentials */
.slider-dots-credentials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: var(--spacing-lg) 0;
}
/* Slider Arrows for Credentials */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--text-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    opacity: 0.7;
}

.slider-arrow:hover {
    opacity: 1;
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-arrow-prev {
    left: 10px;
}

.slider-arrow-next {
    right: 10px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-arrow-prev {
        left: 5px;
    }
    
    .slider-arrow-next {
        right: 5px;
    }
}

/* Slider Arrows for Stories */
.slider-arrow-stories {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--text-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    opacity: 0.7;
}

.slider-arrow-stories:hover {
    opacity: 1;
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-stories svg {
    width: 20px;
    height: 20px;
}

.slider-arrow-prev-stories {
    left: 10px;
}

.slider-arrow-next-stories {
    right: 10px;
}

@media (max-width: 768px) {
    .slider-arrow-stories {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow-stories svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-arrow-prev-stories {
        left: 5px;
    }
    
    .slider-arrow-next-stories {
        right: 5px;
    }
}
.dot-credential {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.dot-credential.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

.credentials-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(91, 154, 169, 0.1) 0%, rgba(123, 170, 181, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.credentials-note p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

/* ===================================
   SUCCESS STORIES SECTION
   =================================== */
.success-stories {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.stories-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.story-card {
    display: none;
    background: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.story-card.active {
    display: block;
    animation: fadeInStory 0.5s ease;
}

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

.story-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(91, 154, 169, 0.2);
}

.story-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.story-result {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}
.story-content {
    position: relative;
    transition: max-height 0.3s ease;
}

.story-content.collapsed {
    max-height: 150px;
    overflow: hidden;
}

.story-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color));
}

.story-content.expanded {
    max-height: none;
}

.story-content.expanded::after {
    display: none;
}

.story-read-more {
    display: inline-block;
    margin-top: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.story-read-more:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.story-content.expanded + .story-read-more {
    display: none;
}
.slider-dots-stories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.dot-story {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.dot-story.active {
    opacity: 1;
    transform: scale(1.3);
}

/* ===================================
   FOR RELATIVES SECTION
   =================================== */
.for-relatives {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(91, 154, 169, 0.1) 0%, rgba(123, 170, 181, 0.1) 100%);
}

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

.relatives-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.relatives-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.relatives-text {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.relatives-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.relatives-text strong {
    color: var(--primary-color);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary-color);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(91, 154, 169, 0.1);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--spacing-xxl) 0;
    background: var(--secondary-color);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.contact-item.full-width {
    grid-column: 1 / -1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.contact-details a {
    display: block;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.contact-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    border-radius: 16px;
    color: var(--white);
}

.cta-text {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.cta-subtext {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-note {
    margin-top: var(--spacing-xs);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE - TABLET (480px+)
   =================================== */
@media (min-width: 480px) {
    :root {
        --spacing-sm: 1.5rem;
        --spacing-md: 2rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
        --spacing-xxl: 5rem;
    }

    .whatsapp-float {
        width: 65px;
        height: 65px;
    }

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

/* ===================================
   RESPONSIVE - TABLET LARGE (768px+)
   =================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    .hero-image img {
        width: 220px;
        height: 220px;
    }

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

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

    .step-item {
        gap: var(--spacing-xl);
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP (1024px+)
   =================================== */
@media (min-width: 1024px) {
    .directions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        gap: var(--spacing-lg);
    }
}

/* ===================================
   RESPONSIVE - MOBILE SPECIFIC (360px-428px)
   =================================== */
@media (min-width: 360px) and (max-width: 428px) {
    .hero {
        padding: var(--spacing-xl) 0;
    }

    .hero-stats {
        gap: var(--spacing-lg);
    }

    .hero-info {
        flex-direction: column;
        align-items: center;
    }

    .direction-card {
        padding: var(--spacing-lg);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto var(--spacing-md);
    }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media print {
    .whatsapp-float,
    .cta-buttons,
    .direction-btn {
        display: none;
    }
}