/* Calculator Section Styles */
.calculator.section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 3rem 0 2rem 0;
}

.calculator-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.tab-btn {
    background: #181818;
    border: 1px solid #222;
    color: #a0a0a0;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background: #222;
    color: #fff;
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: #000;
    border-color: transparent;
}

.tab-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.calculator__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 600px;
}

.calculator__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.calculator__form .form__group {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    flex: 1 1 120px;
}

.calculator__form label {
    color: #00f5a0;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.calculator__form .form__input {
    background: #181818;
    border: 1px solid #222;
    color: #fff;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.calculator__form .form__input:focus {
    outline: none;
    border-color: #00f5a0;
}

.calculator__btn {
    margin-top: 1rem;
    min-width: 180px;
}

.calculator__result {
    margin-top: 1.5rem;
    background: rgba(0,245,160,0.08);
    border: 1px solid rgba(0,245,160,0.15);
    border-radius: 8px;
    color: #00f5a0;
    padding: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Result Card Styles */
.result-card {
    text-align: center;
}

.result-card h3 {
    color: #00f5a0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.bmr-summary, .bmi-summary, .menopause-summary {
    margin-bottom: 2rem;
}

.bmr-value, .bmi-value {
    background: rgba(0,245,160,0.1);
    border: 1px solid rgba(0,245,160,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: inline-block;
}

.bmr-value .number, .bmi-value .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00f5a0;
}

.bmr-value .unit, .bmi-value .unit {
    display: block;
    font-size: 1rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
}

.bmr-value .label, .bmi-value .label {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Activity Table */
.activity-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.activity-table th, .activity-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.activity-table th {
    background: rgba(0,245,160,0.1);
    color: #00f5a0;
    font-weight: 600;
}

.activity-table tr.selected {
    background: rgba(0,245,160,0.05);
}

.activity-table tr.selected td {
    color: #00f5a0;
}

/* BMI Categories */
.bmi-categories {
    margin-top: 2rem;
}

.bmi-categories h4 {
    color: #00f5a0;
    margin-bottom: 1rem;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-item {
    background: #181818;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 0.75rem;
    text-align: center;
    min-width: 120px;
}

.category-range {
    display: block;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 0.25rem;
}

.category-name {
    display: block;
    font-weight: 500;
    color: #fff;
}

/* Menopause Styles */
.menopause-summary {
    background: rgba(0,245,160,0.05);
    border: 1px solid rgba(0,245,160,0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.assessment-text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
}

.recommendations {
    text-align: left;
    margin-top: 2rem;
}

.recommendations h4 {
    color: #00f5a0;
    margin-bottom: 1rem;
}

.recommendations ul {
    list-style: none;
    padding: 0;
}

.recommendations li {
    background: #181818;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.recommendations li:before {
    content: "✓";
    color: #00f5a0;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Result Note */
.result-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.result-note p {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-style: italic;
}

/* Symptom Checkboxes */
.symptoms-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(0, 245, 160, 0.05);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #181818;
    border: 2px solid #333;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: #00f5a0;
    border-color: #00f5a0;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

/* Half-width form group */
.form__group--half {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 120px;
}

/* Centered label and input */
.form__label--centered {
    text-align: center;
    display: block;
}

.form__input--centered {
    text-align: center;
}

/* ============================================
   BASE & VARIABLES
   ============================================ */

:root {
    /* Colors - Matching Reward Fitness Brand */
    --primary-gradient: linear-gradient(135deg, #00f5a0 0%, #00d4ff 100%);
    --primary-color: #00d4ff;
    --secondary-color: #00f5a0;
    --dark-color: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --text-color: #e0e0e0;
    --text-secondary: #a0a0a0;
    --white-color: #ffffff;
    --success-color: #10b981;
    --error-color: #ef4444;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --h1-font-size: 3.5rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 1.75rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    
    /* Font Weight */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Spacing */
    --header-height: 5rem;
    --section-padding: 6rem 0;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
    
    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 212, 255, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 212, 255, 0.3);
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    :root {
        --h1-font-size: 2.5rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --h1-font-size: 2rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.25rem;
    }
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--normal-font-size);
    font-weight: var(--font-regular);
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--white-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    outline: none;
}

/* ============================================
   REUSABLE CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__subtitle {
    display: inline-block;
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: var(--font-semibold);
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.button-primary {
    background: var(--primary-gradient);
    color: var(--dark-color);
    box-shadow: var(--shadow-sm);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.button-outline {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.button-outline:hover {
    background: var(--primary-gradient);
    color: var(--dark-color);
    border-color: transparent;
    transform: translateY(-3px);
}

.button-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    height: 50px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    position: relative;
    transition: var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white-color);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        font-size: 2rem;
    }
}

/* ============================================
   HOME SECTION
   ============================================ */

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 245, 160, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home__data {
    z-index: 1;
}

.home__title {
    font-size: calc(var(--h1-font-size) * 1.2);
    font-weight: var(--font-extrabold);
    margin-bottom: 1.5rem;
    line-height: 0.75;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.home__title .gradient-text {
    display: block;
    font-size: calc(var(--h1-font-size) * 1.3);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: none;
}

.home__title .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width:140px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.home__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.home__buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.home__img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home__hero-img {
    position: relative;
    z-index: 2;
    max-width: 80%;
    max-height: 70vh;
    border-radius: 20px;
}

.home__hero-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 3;
}

.home__blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.home__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-down {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@media screen and (max-width: 968px) {
    .home__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .home__data {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .home__buttons {
        justify-content: center;
    }
    
    .home__img {
        order: -1;
        transform: none;
    }
    
    .home__blob {
        width: 300px;
        height: 300px;
    }
    
    .home__description {
        text-align: center;
    }
    
    .home__title .gradient-text::after {
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background-color: var(--dark-secondary);
}

.about__content {
    max-width: 900px;
    margin: 0 auto;
}

.about__subtitle {
    font-size: var(--h3-font-size);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem 0;
}

.stat__item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-fast);
}

.stat__item:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.stat__number {
    font-size: 3rem;
    font-weight: var(--font-extrabold);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--text-secondary);
    font-size: var(--small-font-size);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT ME SECTION
   ============================================ */

.about-me {
    background-color: var(--dark-color);
}

.about-me__container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-me__img {
    position: relative;
}

.trainer__photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 3px solid transparent;
    background: var(--primary-gradient);
    padding: 3px;
    box-shadow: var(--shadow-lg);
}

.about-me__content {
    padding: 1rem 0;
}

.about-me__name {
    font-size: var(--h2-font-size);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-me__title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: var(--font-medium);
}

.about-me__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-me__credentials {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.credentials__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.credentials__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.credentials__list li {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.credentials__list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media screen and (max-width: 968px) {
    .about-me__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-me__img {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service__card {
    background: var(--dark-secondary);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 0;
}

.service__card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service__card:hover::before {
    opacity: 0.05;
}

.service__icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--dark-color);
}

.service__title {
    position: relative;
    z-index: 1;
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.service__description {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background-color: var(--dark-secondary);
    position: relative;
}

.testimonials__container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonial__wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.testimonial__card {
    background: var(--dark-color);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-fast);
    min-height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.testimonial__content {
    flex: 1;
    padding-left: 2rem;
}

.testimonial__avatar {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.testimonial__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

.testimonial__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    border: none;
}

.testimonial__btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.testimonial__btn-prev {
    left: 0;
}

.testimonial__btn-next {
    right: 0;
}

.testimonial__dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    padding: 0;
}

.testimonial__dot.active {
    background: var(--primary-gradient);
    width: 30px;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .testimonials__container {
        padding: 0 2rem;
    }
    
    .testimonial__card {
        padding: 1.5rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial__content {
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .testimonial__avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 50%;
    }
    
    .testimonial__text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial__btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__subtitle {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.contact__text {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-sm);
    color: var(--dark-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact__content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact__content p {
    color: var(--text-secondary);
    font-size: var(--small-font-size);
}

.contact__social {
    display: flex;
    gap: 1rem;
    padding-top: 25px;
    justify-content: center;
}

.contact__map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact__map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border: none;
    border-radius: var(--border-radius-sm);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.instagram-button i {
    font-size: 1.5rem;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(131, 58, 180, 0.5);
    color: var(--white-color);
}

.contact__form {
    background: var(--dark-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--dark-color);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius-sm);
    color: var(--white-color);
    font-size: var(--normal-font-size);
    transition: var(--transition-fast);
}

.form__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form__input::placeholder {
    color: var(--text-secondary);
}

.form__textarea {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.5rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

@media screen and (max-width: 968px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact__form {
        padding: 2rem;
        order: 1;
    }
    
    .contact__info {
        order: 2;
    }
    
    .contact__details {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-secondary);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer__link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer__info {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer__info i {
    color: var(--primary-color);
    font-size: 1rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    color: var(--text-secondary);
    font-size: var(--small-font-size);
}

.footer__social {
    display: flex;
    justify-content: center;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scrollup {
    position: fixed;
    right: 2rem;
    bottom: -50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    z-index: 100;
}

.scrollup:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scrollup.show-scroll {
    bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .scrollup {
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .scrollup.show-scroll {
        bottom: 1rem;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
    background-color: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00f5a0 100%);
}
