/* ===== Variables CSS ===== */
:root {
    --primary-color: #415935;
    --primary-light: #5a7a4a;
    --primary-dark: #2d3f25;
    --secondary-color: #f5f5f0;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(65, 89, 53, 0.15);
    --transition: all 0.3s ease;
}

/* ===== Reset y Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Botones ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar.navbar-centered {
    justify-content: center;
}

.logo img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a i {
    font-size: 12px;
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ===== Hero Section con Video ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(65, 89, 53, 0.85) 0%, 
        rgba(45, 63, 37, 0.7) 50%,
        rgba(65, 89, 53, 0.85) 100%
    );
    z-index: 1;
}

/* Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 0 20px;
    max-width: 1000px;
}

.hero-logo-badge {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-logo-badge img {
    height: 200px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.glowing-text {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.text-accent {
    color: #c8dfc0;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s backwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.hero .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 1s backwards;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Info Blocks ===== */
.info-block {
    padding: 100px 0;
    background-color: var(--white);
}

.info-block-alt {
    background-color: var(--secondary-color);
}

.info-block-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.info-block-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.info-block-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-block-content p.highlight {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 30px;
}

/* ===== Split Block ===== */
.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.split-image {
    background-size: cover;
    background-position: center;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 80px;
    background-color: var(--primary-color);
    color: var(--white);
}

.split-content .info-label {
    color: rgba(255, 255, 255, 0.8);
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ===== Quote Block ===== */
.quote-block {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 89, 53, 0.9) 0%, rgba(45, 63, 37, 0.95) 100%);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.quote-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.quote-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: -30px auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(65, 89, 53, 0.3);
}

.service-icon i {
    font-size: 24px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 20px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0 20px 30px;
}

/* ===== Gift Section ===== */
.gift {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.gift-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gift-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gift-text p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.gift-form form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
}

.gift-form .form-group {
    margin-bottom: 20px;
}

.gift-form input[type="text"],
.gift-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.gift-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 12px;
    color: var(--text-light);
}

.gift-form .checkbox-group label {
    color: var(--text-light);
}

/* ===== Team Section ===== */
.team {
    padding: 100px 0;
    background-color: var(--white);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: var(--transition);
}

.team-member:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-photo i {
    font-size: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.team-member h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item a {
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 120px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .split-block {
        grid-template-columns: 1fr;
    }
    
    .split-image {
        min-height: 300px;
    }
    
    .split-content {
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }
    
    .split-content h2 {
        font-size: 1.8rem;
    }
    
    .info-block-content h2 {
        font-size: 1.8rem;
    }
    
    .quote-block {
        background-attachment: scroll;
    }
    
    .quote-content h2 {
        font-size: 1.6rem;
    }
    
    .about-content,
    .gift-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .services h2,
    .gift-text h2,
    .team h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-form form,
    .contact-form {
        padding: 25px;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--primary-color);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== Accessibility Widget ===== */
.accessibility-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.accessibility-toggle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.accessibility-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 160px;
}

.accessibility-menu.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.accessibility-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.accessibility-menu button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.accessibility-menu button.active {
    background: var(--primary-color);
    color: var(--white);
}

.accessibility-menu button.active i {
    color: var(--white);
}

.accessibility-menu button i {
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Accessibility States */
body.high-contrast {
    filter: contrast(1.5) !important;
    background-color: #000 !important;
}

body.high-contrast * {
    border-color: #fff !important;
}

body.high-contrast .header,
body.high-contrast .footer,
body.high-contrast .service-card,
body.high-contrast .team-member,
body.high-contrast .gift,
body.high-contrast .info-block,
body.high-contrast .accessibility-menu {
    background-color: #000 !important;
    color: #fff !important;
}

body.high-contrast p,
body.high-contrast span,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast a,
body.high-contrast label {
    color: #fff !important;
}

body.high-contrast .btn-primary {
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

body.high-contrast .nav-menu a {
    color: #fff !important;
}

body.high-contrast input,
body.high-contrast textarea {
    background-color: #000 !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

body.grayscale {
    filter: grayscale(100%) !important;
}

body.grayscale img,
body.grayscale video {
    filter: grayscale(100%) !important;
}

body.large-text {
    font-size: 18px !important;
}

body.large-text h1 {
    font-size: 3.5rem !important;
}

body.large-text h2 {
    font-size: 2.5rem !important;
}

body.large-text h3 {
    font-size: 1.5rem !important;
}

body.large-text p,
body.large-text span,
body.large-text a,
body.large-text li,
body.large-text label {
    font-size: 1.15rem !important;
}

body.larger-text {
    font-size: 22px !important;
}

body.larger-text h1 {
    font-size: 4rem !important;
}

body.larger-text h2 {
    font-size: 3rem !important;
}

body.larger-text h3 {
    font-size: 1.8rem !important;
}

body.larger-text p,
body.larger-text span,
body.larger-text a,
body.larger-text li,
body.larger-text label {
    font-size: 1.35rem !important;
}

body.small-text {
    font-size: 14px !important;
}

body.small-text h1 {
    font-size: 2rem !important;
}

body.small-text h2 {
    font-size: 1.5rem !important;
}

body.small-text h3 {
    font-size: 1.1rem !important;
}

body.small-text p,
body.small-text span,
body.small-text a,
body.small-text li,
body.small-text label {
    font-size: 0.85rem !important;
}

/* ===== Mobile Adjustments for Floating Elements ===== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .accessibility-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .accessibility-toggle {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
