/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --yellow: #FCE38A;
    --light-blue: #88D8D8;
    --light-green: #A7E9AF;
    --pink: #F7A7BB;
    --orange: #FFC085;
    --lavender: #C9B6E4;
    --grey: #7F7F7F;
    --white: #FFFFFF;
    --dark-grey: #4A4A4A;
    --light-grey: #F5F5F5;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-light: rgba(255, 255, 255, 0.9);
    
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(136, 216, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 167, 187, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 192, 133, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(136, 216, 216, 0.15);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-blue), var(--light-green));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--light-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-grey);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1587654780291-39c9404d746b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    animation: backgroundZoom 20s ease-in-out infinite;
}

@keyframes backgroundZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(247, 167, 187, 0.75) 0%, 
        rgba(136, 216, 216, 0.70) 25%,
        rgba(167, 233, 175, 0.75) 50%,
        rgba(255, 192, 133, 0.70) 75%,
        rgba(201, 182, 228, 0.75) 100%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 20s ease-in-out infinite;
}

.particle-1 {
    width: 60px;
    height: 60px;
    background: var(--pink);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    bottom: 20%;
    left: 8%;
    animation-delay: 4s;
}

.particle-4 {
    width: 45px;
    height: 45px;
    background: var(--orange);
    bottom: 30%;
    right: 12%;
    animation-delay: 1s;
}

.particle-5 {
    width: 35px;
    height: 35px;
    background: var(--lavender);
    top: 50%;
    left: 5%;
    animation-delay: 3s;
}

.particle-6 {
    width: 55px;
    height: 55px;
    background: var(--yellow);
    top: 60%;
    right: 8%;
    animation-delay: 5s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-25px, 30px) rotate(180deg) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(20px, -30px) rotate(270deg) scale(1.05);
        opacity: 0.5;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShape 25s ease-in-out infinite;
}

.shape-circle-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.shape-circle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
    bottom: -30px;
    left: -30px;
    animation-delay: 3s;
}

.shape-circle-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--light-green) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px;
}

.hero-text-wrapper {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 3;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease 0.1s both, badgeBounce 3s ease-in-out infinite;
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(255, 192, 133, 0.4);
    transition: transform 0.3s ease;
    cursor: default;
}

.hero-badge:hover {
    transform: scale(1.1) rotate(2deg);
    animation: badgeBounce 0.5s ease;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.hero-badge i {
    color: var(--white);
    font-size: 18px;
    animation: pulse 2s ease infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.5s both;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: visible;
    animation: slideInScale 0.6s ease both;
    opacity: 1;
    z-index: 1;
}

.hero-feature-item:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-feature-item:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    z-index: 0;
    border-radius: 15px;
}

.hero-feature-item:nth-child(1)::before {
    background: linear-gradient(135deg, var(--pink) 0%, rgba(247, 167, 187, 0.8) 100%);
}

.hero-feature-item:nth-child(2)::before {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(136, 216, 216, 0.8) 100%);
}

.hero-feature-item:nth-child(3)::before {
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(167, 233, 175, 0.8) 100%);
}

.hero-feature-item:nth-child(4)::before {
    background: linear-gradient(135deg, var(--orange) 0%, rgba(255, 192, 133, 0.8) 100%);
}

.hero-feature-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    z-index: 10;
}

.hero-feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: iconFloat 3s ease-in-out infinite;
}

.hero-feature-item:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.hero-feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.hero-feature-item:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.hero-feature-item:nth-child(4) .feature-icon {
    animation-delay: 1.5s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.hero-feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}

.hero-feature-item:nth-child(1) .feature-icon i {
    color: var(--pink);
    font-size: 20px;
}

.hero-feature-item:nth-child(2) .feature-icon i {
    color: var(--light-blue);
    font-size: 20px;
}

.hero-feature-item:nth-child(3) .feature-icon i {
    color: var(--light-green);
    font-size: 20px;
}

.hero-feature-item:nth-child(4) .feature-icon i {
    color: var(--orange);
    font-size: 20px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.feature-text strong {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-text span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.trust-badge:nth-child(1) {
    background: linear-gradient(135deg, var(--lavender) 0%, rgba(201, 182, 228, 0.9) 100%);
}

.trust-badge:nth-child(2) {
    background: linear-gradient(135deg, var(--yellow) 0%, rgba(252, 227, 138, 0.9) 100%);
}

.trust-badge:nth-child(3) {
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(167, 233, 175, 0.9) 100%);
}

.trust-badge:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.trust-badge i {
    color: var(--white);
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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


.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both, titleGlow 3s ease-in-out infinite;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.5),
        5px 5px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.2);
    letter-spacing: -0.3px;
    background: rgba(136, 216, 216, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px 35px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 4s infinite;
}

.hero-title:hover {
    transform: scale(1.02);
}

@keyframes titleGlow {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3),
                    0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3),
                    0 0 60px rgba(255, 255, 255, 0.4);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease 0.3s both;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5),
                 0 0 15px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 12px 25px;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
    margin: 0 auto 25px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.7s both, descriptionFloat 4s ease-in-out infinite;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    background: linear-gradient(135deg, 
        rgba(201, 182, 228, 0.85) 0%, 
        rgba(136, 216, 216, 0.85) 50%,
        rgba(167, 233, 175, 0.85) 100%);
    backdrop-filter: blur(12px);
    padding: 18px 28px;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    font-style: italic;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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


.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.8s both;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(247, 167, 187, 0.5),
                0 0 0 3px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(247, 167, 187, 0.5),
                    0 0 0 3px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(247, 167, 187, 0.7),
                    0 0 0 5px rgba(255, 255, 255, 0.5);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    transition: var(--transition);
    font-size: 18px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    transform: translateY(-5px) scale(1.1) rotate(2deg);
    box-shadow: 0 10px 35px rgba(247, 167, 187, 0.7),
                0 0 0 5px rgba(255, 255, 255, 0.5);
    animation: none;
}

.btn-primary:hover i {
    transform: translateX(8px) rotate(15deg);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateX(8px) rotate(15deg);
    }
    50% {
        transform: translateX(12px) rotate(25deg);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary i {
    transition: var(--transition);
    font-size: 18px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.1) rotate(-2deg);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover i {
    transform: scale(1.3) rotate(15deg);
    animation: iconSpin 0.6s ease;
}

@keyframes iconSpin {
    0% {
        transform: scale(1.3) rotate(15deg);
    }
    50% {
        transform: scale(1.4) rotate(180deg);
    }
    100% {
        transform: scale(1.3) rotate(15deg);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1.4s ease 0.7s both;
}

.btn-secondary i {
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--light-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover i {
    transform: scale(1.2);
    color: var(--pink);
}


/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--pink) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--pink));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--grey);
    font-weight: 300;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(135deg, 
        rgba(167, 233, 175, 0.1) 0%, 
        rgba(136, 216, 216, 0.1) 50%,
        rgba(201, 182, 228, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(136, 216, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(247, 167, 187, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 45px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Collapsible About */
.about-text.collapsed {
	max-height: 420px;
	overflow: hidden;
}

.about-text.collapsed::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 120px;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 60%, rgba(255,255,255,0.98) 100%);
	pointer-events: none;
}

.about-toggle-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

.about-toggle {
	background: linear-gradient(135deg, var(--light-blue) 0%, var(--pink) 100%);
	color: var(--white);
	border: none;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(136, 216, 216, 0.3);
	transition: var(--transition);
}

.about-toggle:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(247, 167, 187, 0.45);
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--pink) 0%, 
        var(--orange) 25%,
        var(--light-green) 50%,
        var(--light-blue) 75%,
        var(--lavender) 100%);
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--dark-grey);
    margin-top: 35px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px;
    font-weight: 700;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(135deg, var(--light-blue), var(--pink));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(136, 216, 216, 0.4);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-grey);
    font-weight: 400;
    text-align: justify;
}

.philosophy-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
    display: grid;
    gap: 15px;
}

.philosophy-list li {
    padding: 18px 20px;
    padding-left: 50px;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.9;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid var(--light-green);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.philosophy-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(167, 233, 175, 0.4);
}

.philosophy-list li:nth-child(1) .philosophy-icon {
    background: var(--pink);
    box-shadow: 0 3px 8px rgba(247, 167, 187, 0.4);
}

.philosophy-list li:nth-child(2) .philosophy-icon {
    background: var(--light-blue);
    box-shadow: 0 3px 8px rgba(136, 216, 216, 0.4);
}

.philosophy-list li:nth-child(3) .philosophy-icon {
    background: var(--orange);
    box-shadow: 0 3px 8px rgba(255, 192, 133, 0.4);
}

.philosophy-list li:nth-child(4) .philosophy-icon {
    background: var(--lavender);
    box-shadow: 0 3px 8px rgba(201, 182, 228, 0.4);
}

.philosophy-list li strong {
    color: var(--dark-grey);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--white);
    position: relative;
    padding: 100px 0;
}

.services-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    padding: 60px 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 8px solid var(--light-blue);
    border-radius: 0 15px 15px 0;
}

.services-header-banner {
    background: var(--orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-main-info {
    margin-bottom: 40px;
}

.services-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
    line-height: 1.3;
}

.services-subtitle {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.3;
}

.services-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-check {
    width: 35px;
    height: 35px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-check i {
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.benefit-english,
.benefit-spanish {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.4;
}

.benefit-spanish {
    font-size: 1.1rem;
}

/* Puzzle Pieces Decoration */
.services-puzzle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    z-index: 1;
    opacity: 0.8;
}

.puzzle-piece {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    transform: rotate(15deg);
}

.piece-1 {
    background: #FF6B6B;
    top: 0;
    left: 0;
    transform: rotate(15deg);
}

.piece-2 {
    background: var(--light-green);
    top: 0;
    right: 0;
    transform: rotate(-15deg);
}

.piece-3 {
    background: var(--light-blue);
    bottom: 0;
    left: 0;
    transform: rotate(-15deg);
}

.piece-4 {
    background: var(--orange);
    bottom: 0;
    right: 0;
    transform: rotate(15deg);
}


/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: linear-gradient(135deg, 
        rgba(201, 182, 228, 0.1) 0%, 
        rgba(136, 216, 216, 0.1) 50%,
        rgba(247, 167, 187, 0.1) 100%);
    position: relative;
}

.gallery-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
}

.gallery-item {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, var(--pink), var(--light-blue), var(--lavender));
    border-radius: 30px;
	display: block;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, 
        var(--light-blue) 0%, 
        var(--light-green) 25%,
        var(--pink) 50%,
        var(--orange) 75%,
        var(--lavender) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.9);
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--dark-grey);
    font-style: italic;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 3px solid var(--light-blue);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--light-blue);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(136, 216, 216, 0.3);
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.gallery-nav:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
    color: var(--white);
    transform: translateY(-50%) scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(136, 216, 216, 0.5);
    border-color: var(--light-green);
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grey);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.gallery-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light-blue);
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--light-blue);
    transform: scale(1.3);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(136, 216, 216, 0.3);
}

.gallery-dot:hover {
    transform: scale(1.2);
    background: var(--light-green);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 227, 138, 0.1) 50%,
        rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(136, 216, 216, 0.2);
    border: 2px solid rgba(136, 216, 216, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(136, 216, 216, 0.15);
    line-height: 1;
}

.testimonial-stars {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-grey);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--light-blue);
    font-size: 1.1rem;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--pink) 100%);
    border: 3px solid var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(136, 216, 216, 0.4);
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonials-nav:hover {
    background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    transform: translateY(-50%) scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(247, 167, 187, 0.5);
    border-color: var(--orange);
}

.testimonials-prev {
    left: -60px;
}

.testimonials-next {
    right: -60px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grey);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--light-blue);
    transform: scale(1.3);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(136, 216, 216, 0.3);
}

.testimonial-dot:hover {
    transform: scale(1.2);
    background: var(--light-green);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(135deg, 
        rgba(136, 216, 216, 0.12) 0%, 
        rgba(167, 233, 175, 0.12) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(247, 167, 187, 0.12) 70%,
        rgba(201, 182, 228, 0.12) 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--dark-grey);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

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

/* Contact Cards */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: var(--transition);
}

.contact-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--light-green) 100%);
}

.contact-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--pink) 0%, var(--orange) 100%);
}

.contact-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--lavender) 0%, var(--yellow) 100%);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    color: var(--white);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-card:nth-child(1) .contact-card-icon {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
}

.contact-card:nth-child(2) .contact-card-icon {
    background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
}

.contact-card:nth-child(3) .contact-card-icon {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--yellow) 100%);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-card-content p {
    color: var(--grey);
    margin: 0;
    font-size: 1rem;
}

.contact-card-content a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-card-content a:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

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

.social-links a {
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.social-links a:first-child {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dbf 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-links a:last-child {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-links a i {
    font-size: 1rem;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--pink) 0%, 
        var(--orange) 25%,
        var(--light-green) 50%,
        var(--light-blue) 75%,
        var(--lavender) 100%);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-grey);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 4px rgba(136, 216, 216, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, 
        var(--dark-grey) 0%, 
        #3a3a3a 50%,
        var(--dark-grey) 100%);
    color: var(--white);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--pink) 0%, 
        var(--orange) 25%,
        var(--light-green) 50%,
        var(--light-blue) 75%,
        var(--lavender) 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-text {
    flex: 1;
    text-align: center;
}

.footer-text p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-social a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid var(--white);
    border-radius: 25px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-social a i {
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--dark-grey);
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 968px) {
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
	/* Keep navigation arrows visible on mobile and bring them inside the frame */
	.gallery-prev,
	.gallery-next {
		display: flex;
		width: 44px;
		height: 44px;
		font-size: 1.6rem;
	}

	.gallery-prev { left: 8px; }
	.gallery-next { right: 8px; }

	/* Smaller testimonial buttons that don't block content */
	.testimonials-prev,
	.testimonials-next {
		display: flex;
		width: 32px;
		height: 32px;
		font-size: 1.2rem;
		border-width: 2px;
	}

	.testimonials-prev { left: -45px; }
	.testimonials-next { right: -45px; }
}

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 50px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hero */
    .hero {
        min-height: 500px;
        height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-background {
        background-attachment: scroll;
        animation: none;
    }
    
    .hero-particles,
    .floating-shapes {
        display: none;
    }
    
    .hero-content {
        padding: 80px 20px 40px;
    }
    
    .hero-text-wrapper {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        text-align: center;
        padding: 15px 25px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
        padding: 10px 18px;
        margin-bottom: 15px;
    }
    
    .hero-features {
		display: none;
    }
    
    .hero-feature-item {
        padding: 12px 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-text strong {
        font-size: 14px;
    }
    
    .feature-text span {
        font-size: 11px;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
        padding: 15px 20px;
        margin-bottom: 18px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-trust-badges {
        justify-content: center;
        gap: 8px;
    }
    
    .trust-badge {
        font-size: 11px;
        padding: 8px 14px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services */
    .services-wrapper {
        padding: 40px 25px;
        border-left-width: 6px;
    }

	/* Collapsed height adjustment on mobile */
	.about-text.collapsed {
		max-height: 360px;
	}
    
    .services-header-banner {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .services-title {
        font-size: 1.6rem;
    }
    
    .services-subtitle {
        font-size: 1.4rem;
    }
    
    .benefit-english,
    .benefit-spanish {
        font-size: 1rem;
    }
    
    .benefit-spanish {
        font-size: 0.95rem;
    }
    
    .services-puzzle {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 20px;
    }
    
    .puzzle-piece {
        width: 35px;
        height: 35px;
    }
    
    /* Gallery */
    .gallery-placeholder {
        height: 300px;
        font-size: 1.5rem;
    }
    
    .gallery-item {
        padding: 10px;
        max-width: 100%;
    }
    
    .gallery-image {
        max-width: 100%;
        aspect-ratio: 3 / 4;
        border-width: 3px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px 45px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Smaller testimonial navigation buttons on mobile */
    .testimonials-nav {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
        border-width: 2px;
    }
    
    .testimonials-prev {
        left: -40px;
    }
    
    .testimonials-next {
        right: -40px;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5),
                     0 0 12px rgba(255, 255, 255, 0.3);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                     0 0 10px rgba(255, 255, 255, 0.2);
    }
    
    .hero-features {
		display: none;
    }
    
    .hero-feature-item {
        padding: 12px 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-text strong {
        font-size: 14px;
    }
    
    .feature-text span {
        font-size: 11px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 15px 18px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        padding: 35px 25px;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        padding-left: 20px;
    }
    
    .about-text h3::before {
        width: 4px;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .philosophy-list li {
        font-size: 1rem;
        padding: 15px 18px;
        padding-left: 45px;
    }
    
    .philosophy-icon {
        width: 28px;
        height: 28px;
        left: 12px;
        font-size: 12px;
    }
    
    .philosophy-list li strong {
        font-size: 1.1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .contact-card {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-card-content strong {
        font-size: 1.1rem;
    }
    
    .contact-card-content p {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links a {
        width: 100%;
        justify-content: center;
    }
    
    /* Even smaller testimonial buttons on very small screens */
    .testimonials-nav {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .testimonials-prev {
        left: 4px;
    }
    
    .testimonials-next {
        right: 4px;
    }
    
    .testimonial-card {
        padding: 30px 35px;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--light-blue);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--light-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

