/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --primary-color: #5B9A9E;
    --secondary-color: #D4A15C;
    --dark-color: #1A2C32;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --overlay-dark: rgba(26, 44, 50, 0.7);
    --overlay-light: rgba(26, 44, 50, 0.4);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 0.8rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 130px;
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .logo-img {
    height: 100px;
    filter: none;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-link {
    color: var(--dark-color);
    text-shadow: none;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color), #c89348);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 161, 92, 0.5);
    text-shadow: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #c89348, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 161, 92, 0.6);
    color: var(--white) !important;
}

.btn-cta::after {
    display: none;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    transform: scale(1.1);
}

.lang-arrow {
    font-size: 0.7rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled .lang-arrow {
    color: var(--dark-color);
    text-shadow: none;
}

.lang-toggle:hover .lang-arrow {
    transform: translateY(2px);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
}

.language-selector:hover .lang-dropdown,
.lang-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-option:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.lang-option.active {
    background: rgba(212, 161, 92, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.4s ease;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--dark-color);
    box-shadow: none;
}

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

.hero-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide:nth-child(1) {
    background-image: url('images/hero-hq-1.jpg');
}

.hero-bg-slide:nth-child(2) {
    background-image: url('images/hero-hq-2.jpg');
}

.hero-bg-slide:nth-child(3) {
    background-image: url('images/hero-hq-3.jpg');
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    margin-top: 0;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 5.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.title-static {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    letter-spacing: 2px;
}

.title-dynamic {
    display: inline-block;
    color: var(--secondary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    min-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 6rem;
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.8);
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 0.9em;
    background: var(--secondary-color);
    margin-left: 10px;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px var(--secondary-color);
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.subtitle-line {
    display: block;
    margin: 0.5rem 0;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c89348 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 161, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 161, 92, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Feature badges removed as requested */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0; }
    50% { transform: translateY(10px) rotate(45deg); opacity: 1; }
}

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

/* ===================================
   About Section
   =================================== */
.about {
    padding: 100px 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 90%;
}

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

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 15px 40px rgba(212, 161, 92, 0.2);
}

.service-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.service-label {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
}

.service-label.popular {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.service-card.featured .service-content h3 {
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.7rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--primary-color);
    padding-left: 35px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: rgba(91, 154, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.service-card.featured .service-features li::before {
    color: var(--secondary-color);
    background: rgba(212, 161, 92, 0.1);
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(91, 154, 158, 0.3);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-service:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 154, 158, 0.4);
}

.service-card.featured .btn-service {
    background: linear-gradient(135deg, var(--secondary-color), #c89348);
    box-shadow: 0 4px 15px rgba(212, 161, 92, 0.4);
}

.service-card.featured .btn-service:hover {
    background: linear-gradient(135deg, #c89348, var(--secondary-color));
    box-shadow: 0 6px 20px rgba(212, 161, 92, 0.5);
}

/* ===================================
   Packages Section
   =================================== */
.packages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
}

/* Package Type Selector */
.package-type-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.type-btn {
    padding: 1rem 2.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.type-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(91, 154, 158, 0.3);
}

/* Packages Wrapper */
.packages-wrapper {
    display: none;
}

.packages-wrapper.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.packages-grid.intensives {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto 3rem;
}

/* Package Cards */
.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Featured Package */
.package-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a8185 100%);
    color: var(--white);
    transform: scale(1.03);
    border-color: var(--secondary-color);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.package-card.featured .package-header h3,
.package-card.featured .package-subtitle,
.package-card.featured .package-content,
.package-card.featured .package-features li,
.package-card.featured .package-ideal {
    color: var(--white);
}

/* Intensive Cards */
.package-card.intensive {
    border-color: var(--secondary-color);
}

.package-card.featured-intensive {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c89348 100%);
    color: var(--white);
    border-color: var(--secondary-color);
}

.package-card.featured-intensive .package-header h3,
.package-card.featured-intensive .package-subtitle,
.package-card.featured-intensive .package-content,
.package-card.featured-intensive .package-features li,
.package-card.featured-intensive .package-ideal {
    color: var(--white);
}

/* Package Badges */
.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.package-badge.starter {
    background: linear-gradient(135deg, #00bcd4, #00acc1);
    color: var(--white);
}

.package-badge.popular {
    background: linear-gradient(135deg, var(--secondary-color), #c89348);
    color: var(--white);
}

.package-badge.elite {
    background: linear-gradient(135deg, #1a2c32, #2d4a52);
    color: var(--white);
}

.package-badge.intensive-badge {
    background: linear-gradient(135deg, var(--primary-color), #4a8185);
    color: var(--white);
}

.package-badge.camp-badge {
    background: linear-gradient(135deg, var(--secondary-color), #d4a15c);
    color: var(--white);
}

/* Package Header */
.package-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.package-card.featured .package-header,
.package-card.featured-intensive .package-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.package-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.package-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.package-card.featured .package-subtitle,
.package-card.featured-intensive .package-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Package Price */
.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    align-self: flex-start;
    margin-left: -0.5rem;
}

.package-card.featured .currency,
.package-card.featured-intensive .currency {
    color: var(--white);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
}

.package-card.featured .amount,
.package-card.featured-intensive .amount {
    color: var(--white);
}

.period-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.package-card.featured .period-detail,
.package-card.featured-intensive .period-detail {
    color: rgba(255, 255, 255, 0.85);
}

.package-save {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 0.3rem;
}

.package-card.featured .package-save,
.package-card.featured-intensive .package-save {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

/* Package Content */
.package-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-ideal {
    background: rgba(91, 154, 158, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.package-card.featured .package-ideal,
.package-card.featured-intensive .package-ideal {
    background: rgba(255, 255, 255, 0.15);
}

.package-ideal strong {
    color: var(--primary-color);
    font-weight: 700;
}

.package-card.featured .package-ideal strong,
.package-card.featured-intensive .package-ideal strong {
    color: var(--white);
}

/* Package Features */
.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.package-features > li {
    padding: 0.6rem 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

.sub-features {
    list-style: none;
    margin-top: 0.6rem;
    margin-left: 1rem;
}

.sub-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.88rem;
    position: relative;
    padding-left: 20px;
}

.sub-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.package-card.featured .sub-features li,
.package-card.featured-intensive .sub-features li {
    color: rgba(255, 255, 255, 0.95);
}

.package-card.featured .sub-features li::before,
.package-card.featured-intensive .sub-features li::before {
    color: var(--secondary-color);
}

/* Package Guarantee */
.package-guarantee {
    background: rgba(212, 161, 92, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.package-card.featured .package-guarantee,
.package-card.featured-intensive .package-guarantee {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: var(--white);
}

.guarantee-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.package-card.featured .guarantee-icon,
.package-card.featured-intensive .guarantee-icon {
    color: var(--white);
}

/* Package Buttons */
.btn-package {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 1.2rem 2rem;
    font-weight: 700;
    border-radius: 30px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(91, 154, 158, 0.3);
}

.btn-package:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 154, 158, 0.4);
}

.package-card.featured .btn-package {
    background: var(--white);
    color: var(--primary-color);
}

.package-card.featured .btn-package:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.package-card.featured-intensive .btn-package {
    background: var(--white);
    color: var(--secondary-color);
}

.package-card.featured-intensive .btn-package:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Intensive Note */
.intensive-note {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 0.95rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

/* Packages Info Grid */
.packages-info {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Package CTA */
.package-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(91, 154, 158, 0.1), rgba(212, 161, 92, 0.1));
    border-radius: 20px;
}

.package-cta h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.package-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.package-note {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 0.95rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    min-height: 450px;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-card.active {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: center;
}

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

/* Testimonial Image */
.testimonial-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Testimonial Content */
.testimonial-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-color);
}

.testimonial-author h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: normal;
    margin: 0 0 0.5rem 0;
}

.testimonial-achievement {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(91, 154, 158, 0.3);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(212, 161, 92, 0.4);
}

.testimonial-dots {
    display: flex;
    gap: 0.6rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot:hover {
    background: #bbb;
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 100px 0;
    background: var(--dark-color);
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1/1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-icon {
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

/* Quick Contact Buttons */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-contact-btn svg {
    width: 24px;
    height: 24px;
}

.quick-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.quick-contact-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.quick-contact-btn.phone {
    background: linear-gradient(135deg, var(--primary-color), #4a8185);
    color: var(--white);
}

.quick-contact-btn.phone:hover {
    background: linear-gradient(135deg, #4a8185, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 154, 158, 0.4);
}

.quick-contact-btn.email {
    background: linear-gradient(135deg, var(--secondary-color), #c89348);
    color: var(--white);
}

.quick-contact-btn.email:hover {
    background: linear-gradient(135deg, #c89348, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 161, 92, 0.4);
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
}

.contact-info-card h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--light-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(91, 154, 158, 0.2);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h4 {
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-color);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-details .secondary {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.9;
}

.mt-small {
    margin-top: 0.8rem;
}

/* Trust Signals */
.trust-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(91, 154, 158, 0.05), rgba(212, 161, 92, 0.05));
    border-radius: 15px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color);
}

.social-links h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    color: var(--white);
    border-color: transparent;
}

.social-icon.facebook:hover {
    background: #1877F2;
    color: var(--white);
    border-color: transparent;
}

.social-icon.youtube:hover {
    background: #FF0000;
    color: var(--white);
    border-color: transparent;
}

/* Booking Form */
.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.form-header h3 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 154, 158, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
}

/* Form Benefits */
.form-benefits {
    background: linear-gradient(135deg, rgba(91, 154, 158, 0.05), rgba(212, 161, 92, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0 1.5rem 0;
}

.form-benefits p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.form-benefits p:last-child {
    margin-bottom: 0;
}

.form-benefits svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.4rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(91, 154, 158, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 154, 158, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Form Note */
.form-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(91, 154, 158, 0.05);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

.form-note svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================================
   Partners Section
   =================================== */
.partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.partners-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    aspect-ratio: 3/2;
    text-decoration: none;
    cursor: pointer;
}

.partner-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(91, 154, 158, 0.15);
    border-color: var(--primary-color);
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.partner-logo img {
    max-width: 140%;
    max-height: 140%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 110px;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* ===================================
   Thank You Modal
   =================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.modal-content {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease 0.2s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-icon svg {
    stroke: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.modal-content h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: fadeIn 0.5s ease 0.3s backwards;
}

.modal-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeIn 0.5s ease 0.4s backwards;
}

.modal-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease 0.5s backwards;
}

.modal-details {
    background: rgba(91, 154, 158, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeIn 0.5s ease 0.6s backwards;
}

.modal-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.modal-detail-item:last-child {
    margin-bottom: 0;
}

.modal-detail-item svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
    margin-top: 2px;
}

.modal-detail-item span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-detail-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.modal-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.modal-detail-item a:hover {
    color: var(--secondary-color);
}

.modal-close-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(91, 154, 158, 0.3);
    animation: fadeIn 0.5s ease 0.7s backwards;
}

.modal-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(91, 154, 158, 0.4);
}

.modal-close-btn svg {
    transition: transform 0.3s ease;
}

.modal-close-btn:hover svg {
    transform: translateX(5px);
}

/* Form Loading State */
.booking-form.loading {
    pointer-events: none;
    opacity: 0.6;
}

.booking-form.loading .btn-submit {
    background: linear-gradient(135deg, #999, #666);
    cursor: not-allowed;
}

.booking-form.loading .btn-submit span::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .packages-grid.intensives {
        grid-template-columns: 1fr;
    }

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

    .service-content {
        padding: 2rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .logo-img {
        height: 100px;
    }

    .navbar.scrolled .logo-img {
        height: 85px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 126px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

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

    .nav-menu .nav-link {
        color: var(--dark-color);
        text-shadow: none;
    }

    /* Mobile language selector */
    .language-selector {
        width: 100%;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        background: rgba(212, 161, 92, 0.1);
        border-radius: 8px;
    }

    .lang-arrow {
        color: var(--dark-color);
        text-shadow: none;
    }

    .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 0.5rem;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-static {
        font-size: 1.8rem;
    }

    .title-dynamic {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
    }

    .quick-contact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-contact-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .about-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid.intensives {
        grid-template-columns: 1fr;
    }

    .package-type-selector {
        flex-direction: column;
        gap: 0.8rem;
    }

    .type-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card {
        padding: 2rem;
    }

    .package-cta h3 {
        font-size: 1.5rem;
    }

    .package-cta p {
        font-size: 1rem;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-card.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-image {
        height: 300px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

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

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

@media (max-width: 480px) {
    .logo-img {
        height: 85px;
    }

    .navbar.scrolled .logo-img {
        height: 70px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .title-static {
        font-size: 1.3rem;
    }

    .title-dynamic {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .cursor {
        width: 3px;
        margin-left: 5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .subtitle-line {
        margin: 0.5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .partner-item {
        padding: 1rem;
    }

    .testimonial-card.active {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-image {
        height: 250px;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .testimonial-flag {
        font-size: 2rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .trust-signals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-item {
        padding: 0.8rem;
    }

    .form-benefits p {
        font-size: 0.85rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        border-radius: 20px;
    }

    .modal-content h2 {
        font-size: 2rem;
    }

    .modal-content h3 {
        font-size: 1.1rem;
    }

    .modal-content > p {
        font-size: 1rem;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .modal-icon svg {
        width: 45px;
        height: 45px;
    }

    .modal-details {
        padding: 1rem;
    }

    .modal-detail-item {
        font-size: 0.9rem;
    }

    .modal-close-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}
