/* ============================================
   ULM PALYAÇO & ANİMASYON - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #ff6b35;
    --color-primary-dark: #e85a25;
    --color-primary-light: #ff8c5a;
    --color-secondary: #6c38cc;
    --color-secondary-light: #8b5cf6;
    --color-accent: #f72585;
    --color-accent2: #4cc9f0;
    --color-success: #25d366;
    --color-bg: #ffffff;
    --color-bg-light: #f8f6ff;
    --color-bg-dark: #1a1033;
    --color-text: #333333;
    --color-text-light: #6b7280;
    --color-text-white: #ffffff;
    --color-border: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #ff6b35, #f72585, #6c38cc);
    --gradient-hero: linear-gradient(135deg, rgba(26, 16, 51, 0.85), rgba(108, 56, 204, 0.7));
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 246, 255, 0.9));
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Text Gradient ---------- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Padding ---------- */
.section-padding {
    padding: 100px 0;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(108, 56, 204, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.section-badge i {
    margin-right: 6px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-bg-dark);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- BG Light ---------- */
.bg-light-custom {
    background: var(--color-bg-light);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    font-size: 4rem;
    animation: bounce 1s infinite;
}

.preloader-text {
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-top: 12px;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-bg-dark);
}

/* Navbar */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-family: var(--font-heading);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(255, 107, 53, 0.08);
}

/* Header CTA */
.header-cta {
    gap: 8px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.btn-call {
    background: var(--color-primary);
    color: white;
}

.btn-call:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-whatsapp {
    background: var(--color-success);
    color: white;
}

.btn-whatsapp:hover {
    background: #1fb855;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-bg-dark);
    padding: 4px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

.hero .min-vh-100 {
    padding-top: 100px;
    padding-bottom: 140px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-white);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-badge i {
    margin-right: 8px;
    color: #fbbf24;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--color-text-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #fbbf24, #ff6b35, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    padding: 14px 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.btn-hero-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-hero-whatsapp {
    padding: 14px 32px;
    background: var(--color-success);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.btn-hero-whatsapp:hover {
    background: #1fb855;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-hero-outline {
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text-white);
    font-family: var(--font-heading);
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Hero Shape */
.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-shape svg {
    display: block;
    width: 100%;
}

/* ============================================
   ABOUT
   ============================================ */
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--color-bg-dark);
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(108, 56, 204, 0.1));
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-bg-dark);
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Primary Button */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-success);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    border: none;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: #1fb855;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

/* ============================================
   SERVICES
   ============================================ */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 28px;
    position: relative;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
    font-size: 1.5rem;
    margin-top: -52px;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

.service-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-bg-dark);
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   EVENTS
   ============================================ */
.events-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--color-border);
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* Event Card */
.event-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 51, 0.95) 0%, rgba(26, 16, 51, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.event-card:hover .event-card-overlay {
    background: linear-gradient(to top, rgba(26, 16, 51, 0.98) 0%, rgba(108, 56, 204, 0.6) 100%);
}

.event-card-overlay h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.event-card-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.event-card-overlay .btn {
    align-self: flex-start;
    transition: var(--transition);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-swiper {
    padding-bottom: 60px;
}

.gallery-swiper .swiper-slide {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--color-primary);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 1rem;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    margin: 20px 10px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-bg-dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.testimonials-swiper {
    padding-bottom: 50px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-bg-dark);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.pricing-price small {
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    font-size: 1.1rem;
    color: var(--color-success);
}

.pricing-features li.disabled {
    color: var(--color-text-light);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--color-text-light);
}

.btn-pricing {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: none;
}

.btn-pricing:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   FAQ
   ============================================ */
.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-bg-dark);
    padding: 20px 24px;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(108, 56, 204, 0.05));
    color: var(--color-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-primary-light);
}

.accordion-button::after {
    background-image: none;
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 1rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    content: '\F286';
}

.accordion-body {
    color: var(--color-text-light);
    font-size: 0.95rem;
    padding: 0 24px 20px;
    line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-bg-dark);
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

/* Contact CTA Buttons */
.contact-cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.btn-call-big,
.btn-whatsapp-big {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-call-big {
    background: var(--color-primary);
}

.btn-call-big:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-whatsapp-big {
    background: var(--color-success);
}

.btn-whatsapp-big:hover {
    background: #1fb855;
    color: white;
    transform: translateY(-2px);
}

/* Map */
.contact-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
}

.contact-map-wrapper iframe {
    display: block;
    border-radius: var(--radius-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    font-size: 1.6rem;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 9990;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1fb855;
    color: white;
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--color-bg-dark);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    font-family: var(--font-heading);
    font-weight: 600;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    color: white;
    transform: translateY(-4px);
}

/* ============================================
   MOBILE CTA BAR
   ============================================ */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    display: flex;
    z-index: 9998;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.mobile-cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-weight: 600;
}

.mobile-cta-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.mobile-cta-item:hover,
.mobile-cta-item:focus {
    color: white;
}

.mobile-cta-item.whatsapp {
    background: var(--color-success);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        inset: 0;
        background: rgba(26, 16, 51, 0.97);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar.active {
        opacity: 1;
        visibility: visible;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .nav-link {
        color: white;
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-primary);
        background: rgba(255, 107, 53, 0.15);
    }

    .mobile-nav-toggle.active {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10000;
        color: white;
    }

    .mobile-nav-toggle.active::before {
        content: '\F62A';
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    body {
        padding-bottom: 60px;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .events-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .event-card {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .header-cta {
        display: none !important;
    }
}

/* Utility: Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}