/* 
 * Clevaloran - Home Workouts CSS Styles
 * Theme: Fitness, home workouts
 * Created for: clevaloran.shop
 */

/* ===== RESET & BASE STYLES ===== */
:root {
    /* Primary Colors */
    --primary: #174B3A;
    --primary-light: #2A6C57;
    --primary-dark: #0E3326;
    
    /* Accent Colors */
    --accent: #F7B500;
    --accent-light: #FFCA3A;
    --accent-dark: #E6A600;
    
    /* Neutral Colors */
    --bg-color: #F3F6F4;
    --light-gray: #f9f9f9;
    --medium-gray: #E8E8E8;
    --dark-gray: #333333;
    --white: #FFFFFF;
    
    /* Font Families */
    --font-primary: 'Rubik', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-2xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea {
    font-family: var(--font-secondary);
    outline: none;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    padding: 1.2rem 1.6rem;
    width: 100%;
    font-size: 1.6rem;
    transition: border-color var(--transition-fast);
}

input:focus, textarea:focus {
    border-color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rounded-image {
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.6rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 2.2rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    background-color: var(--accent-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
}

.logo img {
    height: 5rem;
}

.menu {
    display: flex;
    gap: 3.2rem;
}

.menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
}

.menu a:hover {
    color: var(--primary);
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.4rem;
    padding: 0;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* Header Scroll State */
.header-scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.header-scrolled .header-content {
    height: 7rem;
}

@media (max-width: 992px) {
    .menu {
        gap: 2.4rem;
    }
    
    .header-content .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1100;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 40rem;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.4rem;
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-lg);
        padding: 6rem 0;
        z-index: 1050;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .menu-open .mobile-menu-toggle {
        position: fixed;
        right: 2rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 16rem 0 6rem;
    position: relative;
    background: linear-gradient(135deg, #E8F0EB 0%, #F3F6F4 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 2.4rem;
    font-size: 5.2rem;
    line-height: 1.1;
    color: var(--primary);
}

.hero-text p {
    font-size: 2rem;
    margin-bottom: 3.2rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 4.2rem;
    }
    
    .hero-text p {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 12rem 0 6rem;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-image {
        width: 90%;
        margin: 0 auto;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 9rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.text-left {
    text-align: left;
    margin-left: 0;
    margin-bottom: 3.2rem;
}

.section-header p {
    font-size: 1.8rem;
    color: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.2rem;
}

.benefit-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 3.2rem;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
}

.benefit-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
}

.benefit-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefits {
        padding: 6rem 0;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 9rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.2rem;
}

.step {
    flex: 1;
    min-width: 30rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 6rem;
    height: 6rem;
    background-color: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    box-shadow: var(--shadow-md);
}

.step-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3.2rem;
    width: 100%;
    height: 100%;
}

.step-image {
    width: 100%;
    height: 20rem;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.4rem;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.step:hover .step-image img {
    transform: scale(1.05);
}

.step h3 {
    color: var(--white);
    margin-bottom: 1.6rem;
}

.step p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 50rem;
    }
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 9rem 0 12rem;
    background-color: var(--white);
    position: relative;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.2rem;
}

.plan {
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan:nth-child(2) {
    background-color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
    z-index: 10;
}

.plan:nth-child(2):hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 3.2rem;
    text-align: center;
    position: relative;
}

.plan:nth-child(2) .plan-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.plan-badge {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    background-color: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 10rem;
    text-transform: uppercase;
}

.plan:nth-child(2) .plan-badge {
    color: var(--accent-dark);
}

.plan-header h3 {
    color: var(--white);
    margin-bottom: 1.6rem;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.period {
    font-size: 1.6rem;
    opacity: 0.8;
}

.plan-features {
    padding: 3.2rem;
    flex-grow: 1;
}

.plan-features li {
    position: relative;
    padding-left: 2.8rem;
    margin-bottom: 1.6rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.plan:nth-child(2) .plan-features li::before {
    color: var(--accent);
}

.plan .btn {
    margin: 0 3.2rem 3.2rem;
}

.pricing-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

@media (max-width: 992px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .plan {
        min-width: 32rem;
        width: 100%;
        max-width: 40rem;
    }
    
    .plan:nth-child(2) {
        transform: scale(1);
    }
    
    .plan:nth-child(2):hover {
        transform: translateY(-10px);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 9rem 0;
    background-color: var(--bg-color);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 30rem;
    max-width: 40rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3.2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 2.4rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.author-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 0.4rem;
}

.author-details p {
    margin-bottom: 0;
    color: var(--dark-gray);
    font-size: 1.4rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 4.8rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--medium-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial {
        min-width: 100%;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 9rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-content {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
}

.subscribe-form {
    margin-top: 4.8rem;
}

.form-group {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.form-privacy {
    font-size: 1.4rem;
    opacity: 0.8;
}

.form-privacy a {
    color: var(--accent);
    text-decoration: underline;
}

.form-privacy a:hover {
    color: var(--accent-light);
}

.error-message {
    background-color: rgba(255, 0, 0, 0.2);
    color: var(--white);
    padding: 1.2rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.4rem;
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 9rem 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 6.4rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-md);
}

.about-text {
    flex: 1;
}

.about-features {
    margin-top: 3.2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.feature-icon {
    font-size: 3.2rem;
}

.feature-text h4 {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 4.8rem;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 9rem 0;
    background-color: var(--bg-color);
}

.contact-content {
    display: flex;
    gap: 4.8rem;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--white);
    padding: 3.2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 2.4rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.contact-card {
    background-color: var(--white);
    padding: 3.2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2.4rem;
    width: 4.8rem;
    height: 4.8rem;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail h4 {
    margin-bottom: 0.4rem;
}

.contact-detail p {
    margin-bottom: 0;
}

.map-container {
    flex-grow: 1;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

#map {
    width: 100%;
    height: 100%;
    min-height: 30rem;
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 6.4rem 0 2.4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4.8rem;
    margin-bottom: 4.8rem;
}

.footer-logo {
    flex: 2;
    min-width: 25rem;
}

.footer-logo p {
    margin-top: 1.6rem;
    opacity: 0.8;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 4.8rem;
}

.footer-links-column {
    flex: 1;
    min-width: 16rem;
}

.footer-links-column h4 {
    color: var(--white);
    margin-bottom: 2.4rem;
    position: relative;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1.2rem;
    width: 4.8rem;
    height: 2px;
    background-color: var(--accent);
}

.footer-links-column ul li {
    margin-bottom: 1.2rem;
}

.footer-links-column a {
    color: var(--medium-gray);
    transition: color var(--transition-fast);
}

.footer-links-column a:hover {
    color: var(--white);
}

.footer-newsletter {
    flex: 2;
    min-width: 25rem;
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 2.4rem;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input {
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

.newsletter-form button {
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 0 2.4rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.footer-language {
    display: flex;
    gap: 1.6rem;
}

.footer-language span {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-language span:hover,
.footer-language span.active {
    opacity: 1;
}

.footer-copy {
    font-size: 1.4rem;
    opacity: 0.6;
}

.footer-security {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 40rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.4rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: fadeIn var(--transition-medium);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1.6rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 100%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2.4rem;
    right: 2.4rem;
    width: 4.8rem;
    height: 4.8rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: all var(--transition-slow);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 375px) {
    html {
        font-size: 50%;
    }
}