/* ============== GLOBAL STYLES ============== */
:root {
    --primary: #d4a574;
    --primary-dark: #b8895a;
    --secondary: #2c1810;
    --accent: #e8b4b8;
    --dark: #1a0f0a;
    --light: #faf7f2;
    --text: #3a2820;
    --text-light: #6b5750;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #d4a574 0%, #e8b4b8 100%);
    --gradient-dark: linear-gradient(135deg, #2c1810 0%, #4a2c20 100%);
    --shadow: 0 10px 40px rgba(44, 24, 16, 0.1);
    --shadow-hover: 0 20px 60px rgba(44, 24, 16, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    transform: translateY(-50%);
}

.section-title {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 15px;
    }
}

/* ============== TOP BAR ============== */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-info span {
    color: rgba(255,255,255,0.85);
}

.top-info i {
    color: var(--primary);
    margin-right: 5px;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 15px;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============== NAVIGATION ============== */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.brand-tagline {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--secondary);
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    position: relative;
    font-size: 15px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-dark);
}

.btn-book {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
    transition: var(--transition);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.5);
}

.btn-book::after {
    display: none !important;
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    font-size: 20px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============== PAGE HEADER ============== */
.page-header {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85), rgba(74, 44, 32, 0.75)),
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600') center/cover;
    padding: 100px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    position: relative;
}

.breadcrumb-item, .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "›";
}

@media (max-width: 768px) {
    .page-header { padding: 70px 0 50px; }
    .page-header h1 { font-size: 36px; }
}

/* ============== HERO SECTION (Home) ============== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7), rgba(74, 44, 32, 0.6)),
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600') center/cover;
    color: var(--white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.2), transparent 50%);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.text-gradient {
    background: linear-gradient(135deg, #d4a574 0%, #e8b4b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    margin-bottom: 50px;
}

.btn-primary-custom {
    background: var(--gradient);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.6);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll a {
    color: var(--white);
    font-size: 14px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

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

.animate-fade {
    animation: fadeInUp 1s ease-out;
}

.animate-fade:nth-child(2) { animation-delay: 0.2s; animation-fill-mode: backwards; }
.animate-fade:nth-child(3) { animation-delay: 0.4s; animation-fill-mode: backwards; }
.animate-fade:nth-child(4) { animation-delay: 0.6s; animation-fill-mode: backwards; }

@media (max-width: 992px) {
    .hero-title { font-size: 56px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { text-align: center; }
    .btn-primary-custom, .btn-outline-custom { 
        padding: 12px 25px; 
        font-size: 14px;
        margin-bottom: 10px;
    }
    .hero-stats { justify-content: center; gap: 20px; }
    .stat-item h3 { font-size: 32px; }
    .stat-divider { display: none; }
}

/* ============== FEATURES SECTION (Home) ============== */
.features-section {
    background: var(--light);
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.feature-box:hover .feature-box-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-box h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* ============== ABOUT SECTION ============== */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.05;
}

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image-main::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
}

.about-image-main img {
    transition: var(--transition);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 8px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .about-image-wrapper { padding-right: 0; }
    .experience-badge { left: 10px; padding: 15px; }
    .badge-number { font-size: 32px; }
    .badge-text { font-size: 10px; }
    .about-features { grid-template-columns: 1fr; }
}

/* ============== STORY SECTION ============== */
.story-section {
    background: var(--light);
}

.story-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

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

.story-img:hover img {
    transform: scale(1.05);
}

/* ============== MISSION SECTION ============== */
.mission-section {
    background: var(--white);
}

.mission-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(10deg);
}

.mission-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

/* ============== TEAM SECTION ============== */
.team-section {
    background: var(--light);
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: var(--gradient);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--white);
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.team-info {
    padding: 25px 20px;
}

.team-info h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.team-info span {
    color: var(--primary-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============== SERVICES SECTION ============== */
.services-section {
    background: var(--light);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.service-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
    transform: scale(1.02);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-list li {
    color: var(--white);
}

.service-card.featured .service-link {
    color: var(--primary);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.1);
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.service-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px dashed rgba(212, 165, 116, 0.2);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--primary);
    margin-right: 8px;
}

.service-price {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.service-price strong {
    color: var(--primary-dark);
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.service-card.featured .service-price {
    color: rgba(255,255,255,0.9);
    border-top-color: rgba(255,255,255,0.2);
}

.service-card.featured .service-price strong {
    color: var(--primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    gap: 15px;
    color: var(--secondary);
}

/* ============== PRICING SECTION ============== */
.pricing-section {
    background: var(--white);
}

.pricing-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--primary);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-header {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    margin-bottom: 25px;
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    color: var(--primary-dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.price span {
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.pricing-card.featured .price span {
    color: rgba(255,255,255,0.7);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary);
    font-size: 18px;
}

.pricing-card.featured .pricing-features i {
    color: var(--primary);
}

/* ============== ACADEMY SECTION ============== */
.academy-section {
    background: var(--white);
    position: relative;
}

.academy-image {
    position: relative;
}

.academy-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.academy-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-hover);
    border-left: 4px solid var(--primary);
}

.academy-floating-card i {
    font-size: 32px;
    color: var(--primary);
}

.academy-floating-card h4 {
    font-size: 16px;
    margin: 0;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.academy-floating-card p {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light);
    border-radius: 12px;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.course-item:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateX(5px);
}

.course-item:hover i {
    color: var(--white);
}

.course-item i {
    color: var(--primary);
    font-size: 20px;
}

.academy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.academy-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
}

.academy-feature i {
    color: var(--primary);
    font-size: 18px;
}

@media (max-width: 768px) {
    .academy-floating-card { left: 10px; bottom: 10px; }
    .courses-grid { grid-template-columns: 1fr; }
}

/* ============== COURSES SECTION (Academy) ============== */
.courses-section {
    background: var(--light);
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.course-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.course-duration i {
    margin-right: 5px;
}

.course-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-level {
    display: inline-block;
    background: rgba(212, 165, 116, 0.15);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.course-content h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.course-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    margin-bottom: 15px;
}

.course-meta span {
    font-size: 13px;
    color: var(--text-light);
}

.course-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-price {
    font-size: 24px;
    color: var(--primary-dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.btn-enroll {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-enroll:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
    color: var(--white);
}

/* ============== WHY ACADEMY SECTION ============== */
.why-academy-section {
    background: var(--white);
}

.why-card {
    background: var(--light);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.why-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.why-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.why-card:hover i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.why-card h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ============== GALLERY SECTION ============== */
.gallery-section {
    background: var(--light);
}

.gallery-filter {
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(212, 165, 116, 0.3);
    color: var(--text);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 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(--gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 32px;
    transform: scale(0);
    transition: var(--transition);
    margin-bottom: 10px;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
    opacity: 0;
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
}

.gallery-col {
    transition: var(--transition);
}

.gallery-col.hide {
    display: none;
}

/* ============== STATS OVERVIEW ============== */
.stats-overview {
    background: var(--light);
}

.stat-overview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

.stat-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    color: var(--primary-dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

.stat-stars {
    margin-top: 10px;
}

.stat-stars i {
    color: #ffc107;
    font-size: 16px;
}

/* ============== TESTIMONIALS SECTION ============== */
.testimonials-section {
    background: var(--white);
    position: relative;
}

.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-author h5 {
    font-size: 18px;
    color: var(--secondary);
    margin: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
    text-align: left;
    display: block;
}

.testimonial-grid-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px 25px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}

.testimonial-grid-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.testimonial-grid-card .stars {
    margin-bottom: 15px;
    text-align: left;
}

.testimonial-grid-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-grid-card .testimonial-author h5 {
    font-size: 16px;
}

.testimonial-grid-card .testimonial-author span {
    font-size: 12px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient);
    border-radius: 50%;
    opacity: 1;
    margin: 0 20px;
}

.carousel-control-prev { left: -80px; }
.carousel-control-next { right: -80px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1200px) {
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
}

@media (max-width: 768px) {
    .testimonial-card { padding: 30px 20px; }
    .testimonial-text { font-size: 15px; }
    .testimonial-author { flex-direction: column; text-align: center; }
    .testimonial-author h5, .testimonial-author span { text-align: center; }
}

/* ============== SUBMIT REVIEW ============== */
.submit-review {
    background: var(--light);
}

.review-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
}

.review-form .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-form .form-control,
.review-form .form-select {
    border: 2px solid #e8e2da;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light);
}

.review-form .form-control:focus,
.review-form .form-select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.rating-input {
    padding: 12px 0;
    display: flex;
    gap: 5px;
}

.rating-input i {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input i.active,
.rating-input i:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* ============== BOOKING SECTION ============== */
.booking-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent 70%);
    border-radius: 50%;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.15), transparent 70%);
    border-radius: 50%;
}

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

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item h6 {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 25px;
    text-align: center;
}

.booking-form .form-label,
.contact-form .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form .form-control,
.booking-form .form-select,
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e8e2da;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    color: var(--white);
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .booking-form-wrapper { padding: 25px 20px; }
    .form-title { font-size: 24px; }
}

/* ============== FAQ SECTION ============== */
.faq-section {
    background: var(--light);
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ============== CONTACT SECTION ============== */
.contact-section {
    background: var(--light);
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
}

.contact-link:hover {
    gap: 12px;
    color: var(--secondary);
}

/* ============== CONTACT FORM SECTION ============== */
.contact-form-section {
    background: var(--white);
}

.working-hours-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.working-hours-card h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours-card h3 i {
    color: var(--primary);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(212, 165, 116, 0.2);
    font-size: 15px;
    color: var(--text);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .time {
    color: var(--primary-dark);
    font-weight: 600;
}

.hours-list .closed {
    color: var(--text-light);
}

.hours-list .closed .time {
    color: var(--text-light);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ============== SOCIAL SECTION ============== */
.social-section {
    background: var(--light);
}

.social-card {
    display: block;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    color: inherit;
}

.social-card i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    transition: var(--transition);
}

.social-card.facebook i { color: #1877f2; }
.social-card.instagram i { color: #e4405f; }
.social-card.youtube i { color: #ff0000; }
.social-card.whatsapp i { color: #25d366; }

.social-card:hover i {
    transform: scale(1.2);
}

.social-card h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.social-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* ============== CTA SECTION ============== */
.cta-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent 70%);
}

.cta-section::before {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
}

.cta-section::after {
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}

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

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cta-section { padding: 50px 0; }
    .cta-content h2 { font-size: 28px; }
}

/* ============== FOOTER ============== */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand i {
    font-size: 32px;
    color: var(--primary);
}

.footer-brand h3 {
    font-size: 28px;
    color: var(--white);
    margin: 0;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.btn-subscribe {
    background: var(--gradient);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
    color: var(--white);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom i {
    color: var(--primary);
    margin: 0 3px;
}

@media (max-width: 768px) {
    .footer { padding: 60px 0 20px; }
}

/* ============== BACK TO TOP ============== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .back-to-top { bottom: 100px; right: 20px; width: 45px; height: 45px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
}

/* ============== SCROLL ANIMATIONS ============== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
