/* =====================================================
   SALON PREMIUM WEBSITE - COMPLETE STYLESHEET
   Version: 2.0
   
   Table of Contents:
   1. CSS Variables & Reset
   2. Typography
   3. Preloader
   4. Navbar
   5. Hero Section with Parallax
   6. Sections Common Styles
   7. About Section
   8. Services Section
   9. Before-After Slider
   10. Gallery Section
   11. Academy CTA
   12. Testimonials
   13. Contact Section
   14. Footer
   15. Floating Buttons (WhatsApp/Call)
   16. Popup Modal
   17. Animations
   18. Responsive Styles
   ===================================================== */

/* ===== 1. CSS VARIABLES & RESET ===== */
:root {
    --primary-color: #d81b60;
    --secondary-color: #ffd700;
    --dark-color: #1a1a2e;
    --light-color: #fff5f8;
    --text-color: #444;
    --text-light: #777;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #f06292);
    --gradient-gold: linear-gradient(135deg, var(--secondary-color), #ffb300);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.2);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ===== 2. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-padding {
    padding: 100px 0;
}

/* ===== 3. PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    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;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== 4. NAVBAR ===== */
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNav.scrolled {
    padding: 12px 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

#mainNav.scrolled .nav-link {
    color: var(--dark-color);
}

.navbar-brand img {
    transition: var(--transition);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 10px 18px !important;
    font-size: 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: calc(100% - 36px);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    margin-left: 15px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== 5. HERO SECTION WITH PARALLAX ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    will-change: transform;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(216,27,96,0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: var(--secondary-color);
    display: block;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-location {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-location i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216,27,96,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background: var(--gradient-gold);
    color: var(--dark-color);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0; top: 20px; }
}

/* ===== 6. PARALLAX BACKGROUNDS ===== */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.services-parallax {
    background-image: url('../images/services-bg.jpg');
    opacity: 0.1;
}

.academy-parallax {
    background-image: url('../images/academy-bg.jpg');
}

/* ===== 7. ABOUT SECTION ===== */
.about-section {
    background: var(--white);
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    top: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    bottom: 50px;
    left: 30px;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about-content {
    padding-left: 30px;
}

.about-text {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== 8. SERVICES SECTION ===== */
.services-section {
    background: var(--light-color);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(216,27,96,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.btn-book {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card:hover .btn-book {
    transform: translateY(0);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== 9. BEFORE-AFTER SLIDER ===== */
.before-after-section {
    background: var(--dark-color);
    color: var(--white);
}

.before-after-section .section-title {
    color: var(--white);
}

.ba-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ba-before,
.ba-after {
    position: relative;
}

.ba-before img,
.ba-after img {
    width: 100%;
    display: block;
}

.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-after img {
    width: 200%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.ba-before .ba-label {
    right: 20px;
}

.ba-after .ba-label {
    left: 20px;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

/* ===== 10. GALLERY SECTION ===== */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(216,27,96,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 30px;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ===== 11. ACADEMY CTA SECTION ===== */
.academy-cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark-color);
}

.academy-cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(216,27,96,0.8) 100%);
}

.academy-cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cta-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.cta-features i {
    color: var(--secondary-color);
}

/* ===== 12. TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--light-color);
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--secondary-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== 13. CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(216,27,96,0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
}

.form-note i {
    color: var(--secondary-color);
}

.contact-info-card {
    background: var(--dark-color);
    color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.info-content p,
.info-content a {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.info-content a:hover {
    color: var(--secondary-color);
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ===== 14. FOOTER ===== */
.footer-section {
    background: var(--dark-color);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-text {
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    margin-top: 60px;
}

.copyright,
.made-with {
    font-size: 14px;
    margin: 0;
}

/* ===== 15. FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateX(-5px);
}

.floating-btn i {
    font-size: 22px;
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--primary-color);
}

.btn-text {
    display: none;
}

.floating-btn:hover .btn-text {
    display: inline;
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--dark-color);
    transform: translateY(-5px);
}

/* ===== 16. POPUP MODAL ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: scale(0.8);
    transition: var(--transition);
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.popup-image-col {
    background: var(--light-color);
    padding: 0;
}

.popup-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
}

.popup-form-col {
    padding: 40px;
}

.popup-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.popup-header p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form .form-control {
    padding: 12px 18px;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216,27,96,0.4);
}

.popup-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

.popup-note i {
    color: #28a745;
}

/* ===== 17. ACADEMY PAGE STYLES ===== */
.academy-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.academy-hero-parallax {
    background-image: url('../images/academy-hero.jpg');
}

.academy-features {
    background: var(--white);
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.courses-section {
    background: var(--light-color);
    position: relative;
}

.course-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.course-duration {
    background: var(--light-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-color);
}

.course-fee {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.course-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.course-topics {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.course-features span {
    font-size: 13px;
    color: var(--text-color);
}

.course-features i {
    color: #28a745;
    margin-right: 5px;
}

.enroll-section {
    background: var(--white);
}

.enroll-form-wrapper {
    background: var(--light-color);
    padding: 50px;
    border-radius: var(--border-radius);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-header h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== 18. INSTAGRAM SECTION ===== */
.instagram-section {
    background: var(--light-color);
}

.insta-placeholder {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: var(--border-radius);
    text-align: center;
}

.insta-placeholder a {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.insta-placeholder i {
    font-size: 60px;
}

.insta-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

/* ===== 19. RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popup-image-col {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        padding: 12px 15px;
    }
    
    .contact-form-wrapper,
    .enroll-form-wrapper {
        padding: 25px;
    }
    
    .popup-form-col {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}