:root {
    --primary: #ce1212;
    --primary-light: #e61414;
    --primary-dark: #a50e0e;
    --secondary: #212529;
    --accent: #ffc107;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary);
}

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


/* ======================
   LANGUAGE SWITCHER
   ====================== */
.language-switcher {
    position: relative;
    margin-left: 15px;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.language-btn:hover {
    background: rgba(206, 18, 18, 0.1);
    border-color: #F9CD64;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 150px;
    padding: 10px 0;
    margin-top: 10px;
    display: none;
    z-index: 1000;
}

.language-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.language-option {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.language-option:hover {
    background: rgba(206, 18, 18, 0.1);
    color: #F9CD64;
    padding-left: 25px;
}

.language-option.active {
    background: rgba(206, 18, 18, 0.1);
    color: #F9CD64;
    border-left: 3px solid #F9CD64;
}

.language-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

/* For mobile */
@media (max-width: 992px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .language-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ======================
   HERO SLIDER
 /* ====================== HERO SLIDER ====================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

/* SLIDES */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* ACTIVE SLIDE */
.hero-slide.active {
    opacity: 1;
}

/* OVERLAY ONLY ON ACTIVE SLIDE */
.hero-slide.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* transparent layer */
    z-index: 1;
}

/* SLIDE CONTENT */
.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 2;
    /* above overlay */
}

/* TITLES */
.slide-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
    text-transform: uppercase;
}

/* PARAGRAPH */
.slide-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* BUTTON */
.btn-hero {
    background: #F9CD64;
    color: white;
    border: 2px solid #F9CD64;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* SLIDER CONTROLS */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

/* DOTS */
.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* NAV BUTTONS */
.slider-nav {
    display: flex;
    gap: 15px;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav-btn:hover {
    background: #F9CD64;
    border-color: #F9CD64;
}


/* ======================
   FEATURES SECTION
   ====================== */
.features-section {
    padding: 100px 0;
    background: #f9f9f9;
}

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

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F9CD64;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-top-color: #F9CD64;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 120px;
    height: 125px;
    background: rgba(160, 158, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    transition: var(--transition);
}

.feature-icon img {
    width: 80px;
    height: 80px;
}

.feature-card:hover .feature-icon {
    background: #f9cc6469;
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* ======================
   CATEGORIES SECTION (ENHANCED)
   ====================== */
.categories-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.categories-section .section-title h2 {
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.categories-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #F9CD64, var(--accent));
    border-radius: 2px;
}

.categories-section .section-title .lead {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.category-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.btn-view-category {
    background: white;
    color: #F9CD64;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
}

.category-card:hover .btn-view-category {
    transform: translateY(0);
}

.btn-view-category:hover {
    background: #F9CD64;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(206, 18, 18, 0.3);
}

.category-content {
    padding: 30px;
    text-align: center;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
}

.category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #F9CD64;
}

.category-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

.btn-view-all {
    background: #F9CD64;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    border: 2px solid #F9CD64;
}

.btn-view-all:hover {
    background: white;
    color: #F9CD64;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(206, 18, 18, 0.2);
}

/* ======================
   ABOUT SECTION
   ====================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/beriyth.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-about {
    background: #F9CD64;
    color: white;
    border: 2px solid #F9CD64;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-about:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* ======================
   INSTAGRAM SECTION
   ====================== */
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    text-align: center;
}

.instagram-section .section-title h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.instagram-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E1306C, #F77737, #FCAF45);
    border-radius: 2px;
}

.instagram-section .section-title p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.instagram-feed {
    position: relative;
    padding: 40px 0;
}

.instagram-slider {
    overflow: hidden;
    padding: 20px 0;
}

.instagram-slide {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin: 0 15px;
}

.instagram-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.insta-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.insta-content {
    padding: 25px;
    text-align: center;
}

.insta-quote {
    font-size: 1.2rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
}

.insta-quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(206, 18, 18, 0.2);
    font-family: serif;
}

.insta-quote:after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 3rem;
    color: rgba(206, 18, 18, 0.2);
    font-family: serif;
}

.insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E1306C, #F9CD64);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    text-decoration: none;
}

.insta-handle:hover {
    text-decoration: none;
    color: #F9CD64;
}

.insta-handle i {
    font-size: 1.3rem;
    text-decoration: none;
}

.insta-handle h5 {
    text-decoration: none;
}

.instagram-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.insta-nav-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-size: 1.2rem;
    color: #F9CD64;
}

.insta-nav-btn:hover {
    background: #F9CD64;
    color: white;
    transform: scale(1.1);
}

/* ======================
   TIKTOK SECTION
   ====================== */
.tiktok-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.tiktok-section .section-title h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.tiktok-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #A82155, #F9CD64, #000000);
    border-radius: 2px;
}

.tiktok-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.tiktok-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 600px;
}

.tiktok-card:hover {
    transform: translateY(-10px);
    border-color: #a8215548;
    box-shadow: 0 20px 50px #a8215550;
}

.tiktok-video {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tiktok-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tiktok-card:hover .tiktok-video video {
    transform: scale(1.05);
}

.tiktok-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tiktok-card:hover .tiktok-overlay {
    opacity: 1;
}

.tiktok-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    transition: var(--transition);
}

.tiktok-card:hover .tiktok-play-btn {
    background: #F9CD64;
    color: white;
    transform: scale(1.1);
}

.tiktok-content {
    padding: 25px;
    text-align: center;
}

.tiktok-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.tiktok-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.tiktok-stat i {
    color: #F9CD64;
    font-size: 1.1rem;
}

.tiktok-handle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #F9CD64, #EE1D52);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    text-decoration: none;
}


.tiktok-handle:hover {
    color: #F9CD64;
    text-decoration: none;
}

.tiktok-handle i,
.tiktok-handle h5 {
    margin: 0;
    text-decoration: none;
}

/* ======================
   TESTIMONIALS SECTION
   ====================== */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff9f9 0%, #fff0f0 100%);
}

.testimonials-section .section-title h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.testimonials-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F9CD64, var(--accent));
    border-radius: 2px;
}

.testimonials-section .section-title p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.testimonial-slide {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin: 0 20px;
    position: relative;
    transition: var(--transition);
}

.testimonial-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(206, 18, 18, 0.15);
}

.testimonial-quote {
    font-size: 1.3rem;
    color: var(--secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

.testimonial-quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: rgba(206, 18, 18, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-quote:after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -40px;
    font-size: 5rem;
    color: rgba(206, 18, 18, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F9CD64;
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 10px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-size: 1.2rem;
    color: #F9CD64;
}

.testimonial-nav-btn:hover {
    background: #F9CD64;
    color: white;
    transform: scale(1.1);
}

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

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(206, 18, 18, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: #F9CD64;
    transform: scale(1.2);
}

/* ======================
   RESPONSIVE UPDATES
   ====================== */
@media (max-width: 1200px) {
    .testimonial-slide {
        padding: 40px 30px;
    }

    .testimonial-quote {
        font-size: 1.2rem;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {

    .instagram-section,
    .tiktok-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .instagram-section .section-title h2,
    .tiktok-section .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 2.5rem;
    }

    .insta-image {
        height: 250px;
    }

    .tiktok-video {
        height: 250px;
    }

    .testimonial-slide {
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
        padding: 0 25px;
    }
}

@media (max-width: 768px) {

    .instagram-section,
    .tiktok-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .instagram-section .section-title h2,
    .tiktok-section .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 2.2rem;
    }

    .instagram-section .section-title p,
    .tiktok-section .section-title p,
    .testimonials-section .section-title p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .insta-image {
        height: 200px;
    }

    .tiktok-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tiktok-video {
        height: 220px;
    }

    .testimonial-slide {
        margin: 0 10px;
        padding: 25px 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding: 0 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .instagram-nav,
    .testimonial-nav {
        display: none;
    }
}

@media (max-width: 576px) {

    .instagram-section .section-title h2,
    .tiktok-section .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 2rem;
    }

    .insta-quote {
        font-size: 1rem;
        padding: 0 10px;
    }

    .insta-handle,
    .tiktok-handle {
        padding: 8px 20px;
        font-size: 1rem;
    }

    .tiktok-stats {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-quote {
        padding: 0 15px;
    }

    .testimonial-quote:before,
    .testimonial-quote:after {
        font-size: 3rem;
    }
}

/* ======================
   CTA SECTION
   ====================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9CD64 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: #F9CD64;
    border: 2px solid white;
    padding: 15px 45px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta:hover {
    background: transparent;
    color: white;
}

/* ======================
   LESYA STYLE - ADD TO YOUR EXISTING CSS
   ====================== */

/* HERO SECTION - LESYA STYLE */
.hero-lesya {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #F9CD64;
    margin-bottom: 20px;
    text-transform: none;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    color: #F9CD64;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.411) 0%, rgba(8, 8, 8, 0.418) 100%);
}

/* BUTTONS - LESYA STYLE */
.btn-lesya-primary {
    background: #F9CD64;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #F9CD64;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-lesya-primary:hover {
    background: transparent;
    color: #F9CD64;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 205, 100, 0.3);
}

.btn-lesya-secondary {
    background: transparent;
    color: var(--secondary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--secondary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-lesya-secondary:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.btn-lesya-outline {
    background: transparent;
    color: #F9CD64;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #F9CD64;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-lesya-outline:hover {
    background: #F9CD64;
    color: white;
    transform: translateY(-3px);
}

.btn-lesya-white {
    background: white;
    color: #F9CD64;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-lesya-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

/* SERVICES ICONS - LESYA STYLE */
.service-icon-card {
    text-align: center;
    padding: 30px 15px;
    transition: var(--transition);
}

.service-icon-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(249, 205, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #F9CD64;
    transition: var(--transition);
}

.service-icon-card:hover .icon-wrapper {
    background: #F9CD64;
    color: white;
    transform: rotateY(180deg);
}

.service-icon-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.service-icon-card p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

/* ABOUT SECTION - LESYA STYLE */
.about-lesya {
    background: #f9f9f9;
}

.section-title-left {
    margin-bottom: 40px;
}

.section-title-left .subtitle {
    color: #F9CD64;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title-left .title {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.secondary-image {
    width: 60%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: 2;
    border: 8px solid white;
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    background: #F9CD64;
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: var(--box-shadow);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 205, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F9CD64;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.feature-item p {
    color: var(--gray);
    margin: 0;
}

/* SERVICES SECTION - LESYA STYLE */
.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center .subtitle {
    color: #F9CD64;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title-center .title {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}

.service-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F9CD64;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #F9CD64;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* CTA BOOKING - LESYA STYLE */
.cta-booking {
    background: linear-gradient(135deg, #F9CD64 0%, #ffda7a 100%);
    color: white;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* TESTIMONIALS - LESYA STYLE */
.testimonials-lesya {
    background: #f9f9f9;
}

.testimonial-item {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    color: rgba(249, 205, 100, 0.2);
    font-size: 3rem;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #F9CD64;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.author-info p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

/* TEAM SECTION - LESYA STYLE */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.team-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.team-content {
    padding: 25px;
}

.team-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.team-content .position {
    color: #F9CD64;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-content .specialty {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(249, 205, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9CD64;
    transition: var(--transition);
}

.team-social a:hover {
    background: #F9CD64;
    color: white;
    transform: translateY(-3px);
}

/* GALLERY - LESYA STYLE */
.gallery-lesya {
    background: #f9f9f9;
}

.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 205, 100, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title-left .title,
    .section-title-center .title {
        font-size: 2.5rem;
    }

    .secondary-image {
        right: -20px;
        width: 50%;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        top: -20px;
        left: -20px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title-left .title,
    .section-title-center .title {
        font-size: 2.2rem;
    }

    .secondary-image {
        display: none;
    }

    .experience-badge {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 30px;
    }

    .cta-wrapper {
        padding: 30px;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .section-title-left .title,
    .section-title-center .title {
        font-size: 1.8rem;
    }

    /* Slider adjustments for mobile */
    .slide-content {
        top: 60%;
    }
    .slide-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 15px;
    }

    .btn-hero {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .hero-slider {
        min-height: 500px;
    }

    /* ======================
   PROFILE DROPDOWN OVERLAY
   ====================== */
    .user-profile {
        position: relative;
    }

    .user-profile .dropdown-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background: white;
        min-width: 200px;
        box-shadow: var(--box-shadow);
        border-radius: var(--border-radius);
        z-index: 1000;
        padding: 10px 0;
        margin-top: 10px;
        border: none;
    }

    .user-profile .dropdown-menu.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .user-profile .dropdown-item {
        padding: 10px 20px;
        color: var(--secondary);
        display: flex;
        align-items: center;
        transition: var(--transition);
    }

    .user-profile .dropdown-item:hover {
        background: rgba(249, 205, 100, 0.1);
        color: #F9CD64;
        text-decoration: none;
    }

    .user-profile .dropdown-divider {
        margin: 5px 0;
        border-top: 1px solid var(--light-gray);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .btn-lesya-primary,
    .btn-lesya-secondary,
    .btn-lesya-outline,
    .btn-lesya-white {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ======================
   TESTIMONIAL FORM
   ====================== */
.testimonial-form-card {
    background: #fff;
    border: 1px solid var(--light-gray);
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: var(--transition);
}

.rating-stars label:hover,
.rating-stars label:hover~label,
.rating-stars input:checked~label {
    color: #F9CD64;
}

.testimonial-rating .fas.fa-star {
    color: #F9CD64;
}

.testimonial-rating .far.fa-star {
    color: #ddd;
}