/* =====================================================
   NEW LOOKS SALON & ACADEMY - COMPLETE STYLESHEET
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES & ROOT
   ===================================================== */
:root {
    /* PRIMARY BRAND (unchanged from earlier step) */
    --primary-color: #e27396;
    --primary-dark: #d15f82;
    --primary-light: #ea9ab2;
    --primary-rgb: 226, 115, 150;

    /* SECONDARY / BACKGROUNDS */
    --secondary-color: #b3dee2;
    --secondary-light: #efcfe3;
    --secondary-dark: #ea9ab2;

    /* TEXT COLORS – UPDATED FOR THIS PALETTE */
    --text-dark: #3b1f2b;      /* deep plum – main body/headings */
    --text-light: #7e4b5e;     /* soft mauve – paragraphs */
    --text-muted: #b07a8b;     /* lighter mauve for subtle text */
    --text-white: #ffffff;

    /* BACKGROUND COLORS */
    --bg-light: #efcfe3;
    --bg-white: #ffffff;
    --bg-dark: #e27396;

    /* STATUS / ACCENTS (you can keep these) */
    --success: #7bc47f;
    --danger: #f97373;
    --warning: #f6d365;
    --info: #7ac0e5;

    /* FONTS & OTHERS (keep as is) */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(226, 115, 150, 0.35);
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}
/* =====================================================
   2. RESET & BASE STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding-top: 80px;   /* adjust if your navbar is taller/shorter */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Generic paragraph text */
p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* =====================================================
   3. PRELOADER
   ===================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader .spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader span {
    font-family: var(--font-script);
    font-size: 36px;
    color: var(--primary-color);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/*.course-list{*/
/*    color: #c9a86c !important;*/
/*}*/
/* =====================================================
   4. NAVBAR
   ===================================================== */

/* ============================================
   NAVBAR - Complete Mobile Fix
   ============================================ */

/* Base Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition-normal);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 9999;
}

.navbar.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition-normal);
}

.navbar-brand .logo-light {
    display: none;
}

.navbar-brand .logo-dark {
    display: block;
}

/* Desktop Nav Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-normal);
    position: relative;
    display: block;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 15px 0;
    min-width: 220px;
    animation: fadeInDown 0.3s ease;
    background: var(--bg-white);
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 25px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-normal);
    display: block;
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-divider {
    margin: 10px 0;
    border-top: 1px solid #eee;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.nav-phone i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.nav-phone:hover {
    color: var(--primary-color);
}

/* ============================================
   MOBILE TOGGLE BUTTON
   ============================================ */

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    width: 45px;
    height: 45px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 20px;
    position: relative;
}

.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.navbar-toggler-icon span:nth-child(1) {
    top: 0;
}

.navbar-toggler-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon span:nth-child(3) {
    bottom: 0;
}

/* Hamburger Animation - When Open */
.navbar-toggler.active .navbar-toggler-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   MOBILE STYLES (Below 992px)
   ============================================ */

@media (max-width: 991.98px) {
    
    /* Show Toggle Button */
    .navbar-toggler {
        display: flex;
    }
    
    /* Mobile Menu Container */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        padding: 80px 0 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        display: block !important;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    /* Mobile Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Nav Items */
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 20px;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active,
    .nav-link:hover {
        color: var(--primary-color);
    }
    
    /* Mobile Dropdown */
    .dropdown-toggle::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        transition: transform 0.3s ease;
        border: none !important;
        margin-left: auto;
    }
    
    .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
        animation: none;
        display: none;
        width: 100%;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-item:hover {
        padding-left: 25px;
        background: rgba(212, 165, 116, 0.1);
    }
    
    .dropdown-divider {
        display: none;
    }
    
    /* Mobile Actions */
    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin: 30px 20px 0;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-phone {
        font-size: 15px;
    }
    
    .nav-phone span {
        display: inline;
    }
    
    .navbar-actions .btn {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
    }
    
    /* Prevent Body Scroll */
    body.menu-open {
        overflow: hidden;
    }
}

/* ============================================
   SMALLER MOBILE (Below 576px)
   ============================================ */

@media (max-width: 575.98px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar-collapse {
        width: 100%;
        max-width: 100%;
        padding-top: 70px;
    }
    
    .nav-link {
        padding: 14px 0;
        font-size: 15px;
    }
    
    .navbar-actions {
        margin: 20px 15px 0;
    }
    
    .nav-phone i {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ============================================
   TABLET LANDSCAPE
   ============================================ */

@media (min-width: 992px) and (max-width: 1199.98px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .navbar-actions {
        gap: 15px;
        margin-left: 20px;
    }
    
    .nav-phone span {
        display: none;
    }
}
/* =====================================================
   5. BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

.btn-white {
    background: var(--text-white);
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* Glow Effect */
.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.8), 0 0 40px rgba(var(--primary-rgb), 0.4);
    }
}

/* Arrow Button */
.btn-arrow i {
    transition: var(--transition-normal);
}

.btn-arrow:hover i {
    transform: translateX(5px);
}

/* =====================================================
   6. HERO SECTION
   ===================================================== */
/* ================================
   HERO SECTION – AUTO HEIGHT
================================ */
.hero-section {
    width: 100%;
    position: relative;
    overflow: visible; /* IMPORTANT: allow full image height */
}

/* ================================
   SWIPER FIX – DO NOT FORCE HEIGHT
================================ */
.hero-slider,
.swiper,
.swiper-wrapper,
.swiper-slide {
    width: 100%;
    height: auto !important; /* CRITICAL */
}

/* ================================
   SLIDE WRAPPER
================================ */
.hero-slide {
    position: relative;
    width: 100%;
}

/* ================================
   HERO IMAGE – NO CROP EVER
================================ */
.hero-img {
    width: 100%;
    height: auto;              /* IMAGE DEFINES HEIGHT */
    display: block;
    object-fit: contain;       /* FULL IMAGE */
    object-position: center;
    background-color: #ffd6df; /* fallback background */
}

/* ================================
   OVERLAY (FOLLOWS IMAGE HEIGHT)
================================ */
.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /*background: linear-gradient(*/
    /*    to right,*/
    /*    rgba(0, 0, 0, 0.55) 0%,*/
    /*    rgba(0, 0, 0, 0.25) 60%,*/
    /*    rgba(0, 0, 0, 0.1) 100%*/
    /*);*/
}

/* ================================
   SLIDE CONTENT
================================ */
.slide-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 620px;
    color: #ffffff;
}

.slide-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.slide-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* ================================
   BUTTONS
================================ */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================================
   TABLET
================================ */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
}

/* ================================
   MOBILE – STACK SAFE
================================ */
@media (max-width: 768px) {

    .slide-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        padding: 25px 20px;
        text-align: center;
        background: rgba(0,0,0,0.45); /* readability */
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content .subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.9rem;
    }
}


/* Glitch Effect for Heading */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch-1 0.3s infinite linear alternate-reverse;
    color: var(--primary-color);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite linear alternate-reverse;
    color: var(--info);
    z-index: -2;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 0); }
    20% { clip-path: inset(10% 0 70% 0); transform: translate(3px, 0); }
    40% { clip-path: inset(50% 0 30% 0); transform: translate(-3px, 0); }
    60% { clip-path: inset(70% 0 10% 0); transform: translate(3px, 0); }
    80% { clip-path: inset(30% 0 50% 0); transform: translate(-3px, 0); }
    100% { clip-path: inset(80% 0 5% 0); transform: translate(3px, 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(60% 0 20% 0); transform: translate(3px, 0); }
    20% { clip-path: inset(70% 0 10% 0); transform: translate(-3px, 0); }
    40% { clip-path: inset(30% 0 50% 0); transform: translate(3px, 0); }
    60% { clip-path: inset(10% 0 70% 0); transform: translate(-3px, 0); }
    80% { clip-path: inset(50% 0 30% 0); transform: translate(3px, 0); }
    100% { clip-path: inset(5% 0 80% 0); transform: translate(-3px, 0); }
}

/* Swiper Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-white);
    transition: var(--transition-normal);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary-color);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-indicator span {
    color: var(--text-white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* =====================================================
   7. SECTION STYLES
   ===================================================== */
.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

/* Slightly stronger lead paragraphs */
.lead-text {
    font-size: 1.1rem;
    color: var(--text-light);
}


.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%) !important;
}
/* =====================================================
   8. WELCOME SECTION
   ===================================================== */
.welcome-section {
    position: relative;
    overflow: hidden;
}

.welcome-image {
    position: relative;
    padding: 30px;
}

.welcome-image .image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.welcome-image .image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.welcome-image img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card .years {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.floating-card .text {
    font-size: 14px;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.decorative-dots {
    position: absolute;
    top: 0;
    right: -30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: -1;
}

.welcome-content {
    padding-left: 30px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-md);
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    margin: 0;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.05;
}

.bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
}

.bg-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
}

/* =====================================================
   9. MAKEUP STUDIO SECTION
   ===================================================== */
.makeup-studio-section {
    position: relative;
    overflow: hidden;
}

.studio-images {
    position: relative;
    padding: 40px;
}

.studio-images .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.studio-images .main-image img {
    width: 100%;
    display: block;
}

.studio-images .secondary-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-dark);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 20px;
    border-radius: var(--radius-full);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .badge-content {
    text-align: center;
}

.experience-badge i {
    font-size: 30px;
    margin-bottom: 5px;
    display: block;
}

.experience-badge span {
    font-size: 12px;
    font-weight: 600;
}

.studio-content {
    padding-right: 40px;
}

.service-list {
    margin: 30px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list li:last-child {
    border-bottom: none;
}

.list-icon {
    color: var(--primary-color);
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* =====================================================
   10. SPECIAL SECTION (Why Choose Us)
   ===================================================== */
.special-content {
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.feature-card:hover .card-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    margin: 0;
}

.feature-card .card-glow {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.1), transparent);
    transition: var(--transition-slow);
}

.feature-card:hover .card-glow {
    bottom: 0;
}

/* =====================================================
   11. SERVICES SECTION
   ===================================================== */
.services-tabs .nav-pills {
    gap: 10px;
    margin-bottom: 30px;
}

.services-tabs .nav-link {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.services-tabs .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.services-tabs .nav-link.active {
    background: var(--primary-color);
    color: var(--text-white);
}

.services-tabs .nav-link i {
    margin-right: 8px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card .service-content {
    padding: 25px;
}

.service-card .service-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card .service-content p {
    font-size: 14px;
    margin: 0;
}

/* =====================================================
   12. GALLERY SECTION
   ===================================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
    transform: scale(0);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.gallery-overlay h5 {
    color: var(--text-white);
    font-size: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
    opacity: 1;
}

/* =====================================================
   13. FAQ SECTION
   ===================================================== */
.faq-content {
    padding-right: 40px;
}

.faq-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.accordion-item {
    background: var(--bg-white);
    border: none;
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-white);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--text-white);
}

.accordion-button::after {
    background-size: 16px;
    transition: var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
}

/* =====================================================
   14. BRANDS SECTION
   ===================================================== */
.brands-slider {
    padding: 20px 0;
}

.brand-logo {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.brand-logo:hover {
    box-shadow: var(--shadow-md);
}

.brand-logo img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =====================================================
   15. ACADEMY SECTION
   ===================================================== */
.academy-preview-section {
    position: relative;
    overflow: hidden;
}

.academy-content .course-list {
    margin: 30px 0;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
  color: #c9a86c;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.course-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.academy-image-wrapper {
    position: relative;
    padding: 40px;
}

.academy-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.academy-floating-card,
.academy-floating-card-2 {
    position: absolute;
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.academy-floating-card {
    bottom: 20px;
    left: 0;
}

.academy-floating-card-2 {
    top: 20px;
    right: 0;
    animation-delay: 1.5s;
}

.academy-floating-card .card-icon,
.academy-floating-card-2 .card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.academy-floating-card .number,
.academy-floating-card-2 .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.academy-floating-card .label,
.academy-floating-card-2 .label {
    font-size: 12px;
    color: var(--text-light);
}

/* Background Animation */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-animation .shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.1);
    animation: floatShape 20s infinite;
}

.bg-animation .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.bg-animation .shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.bg-animation .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(90deg); }
    50% { transform: translate(0, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
}

/* =====================================================
   16. CONTACT SECTION
   ===================================================== */
.contact-info {
    padding-right: 40px;
}

.info-cards {
    margin: 30px 0;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-card:last-child {
    border-bottom: none;
}

.info-card .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-md);
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.info-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--text-white);
}

.info-card .icon-box.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.info-card:hover .icon-box.whatsapp {
    background: #25d366;
    color: var(--text-white);
}

.info-card .info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-card .info-content p,
.info-card .info-content a {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.info-card .info-content a:hover {
    color: var(--primary-color);
}

.social-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-5px);
}

/* Contact Form */

/* =====================================================
   17. ENQUIRY POPUP MODAL
   ===================================================== */
.enquiry-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.enquiry-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    padding: 10px;
    opacity: 1;
}

.modal-image-col {
    padding: 0;
}

.modal-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--text-white);
}

.modal-image .modal-overlay h3 {
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-image .modal-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.modal-form-wrapper {
    padding: 40px;
}

.modal-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.modal-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.enquiry-form .form-group {
    margin-bottom: 15px;
}

.enquiry-form .form-control {
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: var(--transition-normal);
}

.enquiry-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.modal-whatsapp {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-whatsapp span {
    color: var(--text-light);
    font-size: 14px;
}

/* =====================================================
   18. WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: #25d366;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--text-white);
}

.whatsapp-float .tooltip-text {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =====================================================
   19. BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* =====================================================
   20. FOOTER
   ===================================================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-widget p {
    color: black;
    /*color: rgba(255, 255, 255, 0.7);*/
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    /*color: rgba(255, 255, 255, 0.7);*/
    font-size: 15px;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    /*color: rgba(255, 255, 255, 0.7);*/
    font-size: 15px;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact li a {
    /*color: rgba(255, 255, 255, 0.7);*/
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* =====================================================
   21. PAGE HEADERS (Inner Pages)
   ===================================================== */
.page-header {
    position: relative;
    min-height: 320px;
    background: url("/assets/images/pattern.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Content */
.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: #fff;
    font-size: 14px;
}

.page-header .breadcrumb-item.active {
    color: #f3a6c8;
}

/* Mobile */
@media (max-width: 768px) {
    .page-header {
        min-height: 200px;
        background-size: auto 100%;
    }

    .page-header h1 {
        font-size: 28px;
    }
}


.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    background: none;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-white);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.5);
    padding-right: 10px;
}

/* =====================================================
   22. ANIMATIONS & UTILITIES
   ===================================================== */

/* Fade Animations */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Animation */
.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate Animation */
.rotate-in {
    animation: rotateIn 0.6s ease forwards;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

/* Bounce Animation */
.bounce-in {
    animation: bounceIn 0.8s ease forwards;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Text Gradient Animation */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 3s linear infinite;
}

@keyframes textGradient {
    to { background-position: 200% center; }
}

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Text Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.text-center {
    text-align: center;
}

/* Spacing Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* =====================================================
   23. RESPONSIVE STYLES
   ===================================================== */

/* Large Devices (Desktops) */
@media (max-width: 1199px) {
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        padding: 80px 30px 30px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        color: var(--text-dark);
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .navbar-actions {
        flex-direction: column;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .nav-phone {
        color: var(--text-dark);
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .welcome-content,
    .studio-content,
    .contact-info,
    .faq-content {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Devices (Phones - Landscape) */
@media (max-width: 767px) {
 
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .services-tabs .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .services-tabs .nav-link {
        white-space: nowrap;
    }
    
    .modal-image-col {
        display: none;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Extra Small Devices (Phones - Portrait) */
@media (max-width: 575px) {
    body {
         padding-top: 70px;
        font-size: 14px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .modal-form-wrapper {
        padding: 25px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
    
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .footer {
        display: none !important;
    }
    
    .section-padding {
        padding: 30px 0;
    }
}

/* =====================================================
   24. CUSTOM NOTIFICATION STYLES (Add to CSS)
   ===================================================== */
/*
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    z-index: 99999;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.custom-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-notification.bg-success {
    background: #48bb78;
}

.custom-notification.bg-danger {
    background: #fc8181;
}
*/


/* =====================================================
   25. CUSTOM CURSOR STYLES (Add to CSS if enabled)
   ===================================================== */

.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.custom-cursor.hover {
    width: 20px;
    height: 20px;
    background: var(--primary-dark);
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--primary-dark);
}

/* =====================================================
   ADDITIONAL STYLES - SERVICE PRICES & COURSE CARDS
   ===================================================== */

/* Service Price */
.service-price {
    display: none !important;
    display: inline-block;
    background: rgba(201, 168, 108, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* Course Card */
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.course-card .course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-card .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-card .course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.course-card .course-content {
    padding: 25px;
}

.course-card .course-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.course-card .course-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.course-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 18px;
    font-size: 14px;
}

/* Enrollment Form */
.enrollment-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.enrollment-form .form-control {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.enrollment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.1);
}

/* Academy Features */
.academy-features .d-flex {
    padding: 8px 0;
}

.academy-features i {
    font-size: 16px;
}

/* Academy Image Wrapper */
.academy-image-wrapper {
    position: relative;
    padding: 30px;
}

.academy-image-wrapper > img {
    border-radius: 15px;
}

.academy-image-wrapper .academy-floating-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.academy-floating-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 168, 108, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
}

.academy-floating-card .card-content .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.academy-floating-card .card-content .label {
    font-size: 12px;
    color: var(--text-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 767px) {
    .enrollment-form-wrapper {
        padding: 30px 20px;
    }
    
    .course-card .course-image {
        height: 180px;
    }
    
    .academy-image-wrapper {
        padding: 20px 10px;
    }
    
    .academy-floating-card {
        position: relative;
        margin-top: 20px;
    }
}