@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-primary: #FF1493;
    --pink-hover: #FF69B4;
    --brown-light: #A67C6D;
    --brown-dark: #8B6F63;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #fff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 75%;
    margin: 0 auto;
    padding: 0 20px;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

img:not([src]),
img[src=""] {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===================================
   2. GLOBAL HEADER & NAVIGATION
   =================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: #aa8377;
    color: var(--white);
    padding: 18px 0;
    text-align: center;
}

.top-bar p {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    background: var(--white);
    padding: 5px 0;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    margin-bottom: 15px;
    text-align: center;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 17px;
    padding: 8px 12px;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ff5e94;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff5e94;
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
    border-top: 3px solid #ff5e94;
    list-style: none;
    padding: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: #ff5e94;
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
}

.breadcrumb {
    padding: 20px 0;
    background: var(--bg-light);
}

.breadcrumb a {
    color: var(--pink-primary);
}

.breadcrumb span {
    color: var(--text-light);
}

/* ===================================
   3. HERO SECTIONS
   =================================== */
.hero {
    position: relative;
    height: 600px;
    background: url('images/banner-home.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px #000;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
}

.page-hero .hero-content {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.salon-hero {
    background: url('images/salon-hero.webp') center/cover no-repeat;
}

.makeup-hero {
    background: url('images/makeup-banner.webp') center/cover no-repeat;
}

.about-hero {
    background: url('images/Monika-Monisha-Makeup-Studio-Interior.webp') center/cover no-repeat;
}

.gallery-hero {
    background: linear-gradient(135deg, rgba(255,94,148,0.8), rgba(170,131,119,0.8)), url('images/contact-banner.jpg') center/cover no-repeat;
}

.academy-hero {
    background: url('images/academy-hero.webp') center/cover no-repeat;
}

.contact-hero {
    background: linear-gradient(135deg, rgba(255,94,148,0.8), rgba(170,131,119,0.8)), url('images/contact-banner.jpg') center/cover no-repeat;
}

/* ===================================
   4. BUTTONS & COMMON ELEMENTS
   =================================== */
.btn-pink,
.btn-pink-outline,
.btn-white {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--pink-primary);
    text-align: center;
}

.btn-pink {
    background: var(--pink-primary);
    color: var(--white);
}

.btn-pink:hover {
    background: var(--pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,20,147,0.3);
}

.btn-pink-outline {
    background: transparent;
    color: var(--pink-primary);
}

.btn-pink-outline:hover {
    background: var(--pink-primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--pink-primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--pink-primary);
    margin: 0 auto;
}

.section-subtitle {
    color: var(--text-light);
    margin-top: 10px;
    font-size: 16px;
}

.white-title h2 {
    color: var(--white);
}

.white-underline {
    background: var(--white);
}

.enquiry-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    background: #ff5c93;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    z-index: 9999;
    text-align: center;
    line-height: 1.2;
}

.enquiry-float:hover {
    transform: scale(1.08);
}

.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('images/cta-bg.jpg') center/cover no-repeat fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,20,147,0.9), rgba(255,105,180,0.9));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   5. INDEX/HOME PAGE
   =================================== */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: 650px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item i {
    color: var(--pink-primary);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 16px;
}

.work-gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.academy-section {
    padding: 80px 0;
}

.academy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.academy-image img {
    width: 100%;
    max-width: 600px;
    height: 650px;
    border-radius: 10px;
    object-fit: cover;
}

.academy-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.academy-text h3 {
    font-size: 24px;
    color: var(--pink-primary);
    margin-bottom: 20px;
}

.academy-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.academy-features {
    margin: 25px 0;
}

.academy-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.academy-features i {
    color: var(--pink-primary);
}

.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   6. SALON PAGE
   =================================== */
.salon-content {
    padding: 60px 0;
    background: #fff;
    margin-top: 0 !important;
    padding-top: 40px !important;
    background: #f9f9f9 !important;
}

.salon-content .container {
    max-width: 1250px !important;
    margin: 0 auto !important;
    padding: 0 50px !important;
}

.salon-content h2,
.salon-content h3 {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.salon-content p {
    margin-bottom: 14px !important;
    line-height: 1.65 !important;
}

.salon-content i,
.salon-content svg {
    display: none !important;
}

.salon-content .content {
    padding-left: 20px !important;
}

.salon-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.salon-intro-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.rate-list-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.rate-list-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.services-menu {
    background: var(--pink-primary);
    color: var(--white);
    padding: 30px 20px;
}

.services-menu h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.services-menu ul li {
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.services-menu ul li:hover,
.services-menu ul li.active {
    background: rgba(255,255,255,0.2);
}

.rate-table {
    padding: 30px;
}

.rate-table table {
    width: 100%;
    border-collapse: collapse;
}

.rate-table th,
.rate-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.rate-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.rate-table td:last-child {
    text-align: right;
    color: var(--pink-primary);
    font-weight: 600;
}

/* ===================================
   7. MAKEUP PAGE
   =================================== */
.makeup-content {
    padding: 60px 0;
    background: #fff;
}

.makeup-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.makeup-intro p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.makeup-services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.makeup-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.makeup-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.makeup-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.makeup-service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.makeup-service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.makeup-service-card .price-text {
    color: #FF1493;
    font-weight: 600;
    font-size: 18px;
    margin: 20px 0 25px;
}

.makeup-service-card .btn-pink-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #FF1493;
    color: #FF1493;
    border-radius: 25px;
    background: transparent;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.makeup-service-card .btn-pink-outline:hover {
    background: #FF1493;
    color: #fff;
}

.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-card {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 40px;
    color: #FF1493;
}

.why-choose-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.why-choose-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.brands-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.8;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.brand-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.brand-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo {
    opacity: 1;
    filter: grayscale(0%);
}

.makeup-testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.testimonial-slide p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #999;
    font-size: 14px;
    font-style: normal;
    margin: 0;
}

.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--pink-primary);
    color: var(--white);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   8. ABOUT PAGE
   =================================== */
.about-story {
    margin-top: 0 !important;
    padding-top: 40px !important;
    background: #f9f9f9 !important;
}

.about-story .section-container {
    max-width: 1250px !important;
    margin: 0 auto !important;
    padding: 0 50px !important;
}

.about-story h3 {
    font-size: 30px;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.about-story p {
    margin-bottom: 14px !important;
    line-height: 1.65 !important;
    font-size: 18px;
}

.story-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
}

.story-image img {
    border-radius: 10px !important;
    object-fitContinue13:25: cover !important;
width: 90% !important;
height: 600px;
}
.section.mission-vision {
padding: 80px 0;
background: #f9f9f9;
}
.section.mission-vision .section-title {
text-align: center;
margin-bottom: 50px;
}
.section.mission-vision .section-title h2 {
font-size: 36px;
color: #333;
margin-bottom: 15px;
font-weight: 700;
position: relative;
display: inline-block;
}
.section.mission-vision .section-title h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: #ff5e94;
}
.section.mission-vision .section-title p {
color: #666;
font-size: 16px;
margin-top: 20px;
}
.mission-vision-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
max-width: 1200px;
margin: 0 auto;
}
.mission-card,
.vision-card {
background: #fff;
padding: 50px 40px;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
text-align: center;
transition: all 0.3s ease;
}
.mission-card:hover,
.vision-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.mission-card .icon,
.vision-card .icon {
background: none !important;
border-radius: 0 !important;
}
.mission-card .icon i,
.vision-card .icon i {
font-size: 40px;
color: #ff5e94;
}
.mission-card h3,
.vision-card h3 {
font-size: 28px;
margin-bottom: 20px;
color: #333;
font-weight: 600;
}
.mission-card p,
.vision-card p {
color: #666;
line-height: 1.8;
font-size: 16px;
}
.achievements {
background: linear-gradient(135deg, #ff5e94, #aa8377);
color: #fff;
padding: 60px 0;
}
.achievements .section-title h2,
.achievements .section-title p {
color: #fff;
}
.achievement-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.achievement-item {
text-align: center;
padding: 50px;
}
.achievement-number {
font-size: 3rem;
font-weight: 700;
display: block;
margin-bottom: 10px;
}
.achievement-text {
font-size: 1.1rem;
font-weight: 500;
}
.values-section {
background-color: #f8f9fa;
padding-top: 50px;
padding-bottom: 50px;
}
.values-section .values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
align-items: stretch;
max-width: 1100px;
margin: 0 auto;
}
.values-section .value-item {
background: #fff;
padding: 30px 25px;
border-radius: 14px;
box-shadow: 0 10px 30px rgba(0,0,0,0.06);
height: 100%;
border-left: 4px solid #ff5e94;
transition: transform 0.3s ease;
}
.values-section .value-item:hover {
transform: translateY(-3px);
}
.values-section .value-item h4 {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
font-size: 1.3rem;
color: #333;
font-weight: 600;
}
.values-section .value-item h4 i {
color: #ff2a8a;
font-size: 18px;
}
.values-section .value-item p {
color: #666;
line-height: 1.6;
}
.why-choose-detailed {
padding: 50px 0;
}
.why-choose-detailed .container {
margin: 0 auto;
max-width: 85% !important;
}
.why-choose-detailed .section-title p {
font-size: 18px;
color: #666;
margin-top: 15px;
font-weight: 400;
}
.why-choose-content {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 80px;
align-items: center;
}
.why-choose-image-section img {
width: 600px;
height: 800px;
border-radius: 16px;
}
.why-choose-text-section {
line-height: 1.8;
color: #444;
}
.why-choose-text-section p {
text-align: justify;
margin-bottom: 20px;
font-size: 16px;
}
.why-choose-text-section h3 {
font-size: 28px;
margin-bottom: 25px;
color: #333;
font-weight: 700;
}
.why-choose-text-section h4,
.why-choose-text-section strong {
font-weight: 700;
color: #333;
margin-top: 25px;
margin-bottom: 10px;
display: block;
}
.academy-about-section {
padding: 80px 0;
background: #f9f9f9;
}
.academy-about-section .container {
max-width: 75% !important;
}
.academy-about-content {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
align-items: start;
}
.academy-about-text h3 {
font-size: 28px;
margin-bottom: 20px;
color: #333;
font-weight: 700;
}
.academy-about-text h4 {
font-size: 20px;
margin-top: 35px;
margin-bottom: 15px;
color: #333;
font-weight: 700;
}
.academy-about-text p {
text-align: justify;
line-height: 1.8;
color: #555;
margin-bottom: 12px;
}
.course-info ul,
.course-features ul {
list-style: none;
padding: 0;
margin: 15px 0;
}
.course-info ul li,
.course-features ul li {
text-align: left;
line-height: 1.7;
color: #555;
margin-bottom: 10px;
padding-left: 30px;
position: relative;
}
.course-info ul li {
margin-bottom: 8px !important;
line-height: 1.6;
}
.course-features ul li {
margin-bottom: 5px !important;
line-height: 1.5;
}
.course-info ul li::before {
content: '•';
position: absolute;
left: 0;
color: #FF1493;
font-size: 20px;
font-weight: 700;
}
.course-features ul li::before {
content: '✓';
position: absolute;
left: 0;
color: #FF1493;
font-size: 18px;
font-weight: 700;
}
.course-info ul li strong,
.course-features ul li strong {
color: #333;
font-weight: 700;
}
.academy-about-text .btn-pink {
margin-top: 30px;

}
.academy-about-image img {
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.facilities-section {
padding: 80px 0;
background: #fff;
}
.facilities-section .container {
max-width: 75% !important;
}
.facilities-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
margin-top: 50px;
}
.facility-card {
text-align: left;
}
.facility-icon {
width: 60px;
height: 60px;
background: #FF1493;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
font-size: 24px;
}
.facility-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: #333;
font-weight: 700;
}
.facility-card p {
color: #666;
line-height: 1.8;
text-align: justify;
font-size: 16px;
}
/* ===================================
9. GALLERY PAGE
=================================== */
.gallery-filter-section {
padding: 30px 0;
background: var(--bg-light);
}
.filter-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
}
.filter-btn {
padding: 10px 25px;
border: 2px solid var(--pink-primary);
background: transparent;
color: var(--pink-primary);
border-radius: 25px;
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
background: var(--pink-primary);
color: var(--white);
}
.gallery-main-section {
padding: 50px 0 80px;
}
.gallery-grid-main {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
}
.gallery-item-main {
position: relative;
overflow: hidden;
border-radius: 10px;
aspect-ratio: 3/4;
cursor: pointer;
}
.gallery-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.gallery-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255,20,147,0.8);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: var(--transition);
}
.gallery-item-main:hover .gallery-overlay {
opacity: 1;
}
.gallery-overlay i {
font-size: 48px;
color: var(--white);
}
.gallery-item-main:hover .gallery-img {
transform: scale(1.1);
}
.lightbox-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.95);
}
.lightbox-content {
margin: auto;
display: block;
max-width: 90%;
max-height: 85vh;
object-fit: contain;
}
.lightbox-close {
position: absolute;
top: 20px;
right: 40px;
color: var(--white);
font-size: 40px;
font-weight: 700;
cursor: pointer;
}
.lightbox-prev,
.lightbox-next {
position: absolute;
top: 50%;
color: var(--white);
font-size: 40px;
cursor: pointer;
padding: 16px;
user-select: none;
}
.lightbox-prev {
left: 20px;
}
.lightbox-next {
right: 20px;
}
/* ===================================
10. ACADEMY PAGE
=================================== */
.courses-section {
padding: 80px 0;
background: #f9f9f9;
}
.courses-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.course-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255,20,147,0.08);
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(255,20,147,0.18);
  border-color: rgba(255,20,147,0.25);
}
.featured-course {
  border: 2px solid #FF1493;
  background: linear-gradient(160deg, #fff 60%, rgba(255,20,147,0.04) 100%);
  transform: scale(1.03);
}
.featured-course:hover {
  transform: scale(1.03) translateY(-10px);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  color: #fff;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(255,20,147,0.35);
}
.course-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
}
.course-duration {
  color: #FF1493;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
}
.course-features {
  list-style: none;
  margin: 20px 0;
}
.course-features li {
  padding: 9px 0;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
}
.course-features li:last-child {
  border-bottom: none;
}
.course-features i {
  color: #FF1493;
  margin-right: 10px;
}
.btn-pink, .btn-pink-outline {
  display: block;
  text-align: center;
  margin-top: 24px;
}
.why-academy-section {
padding: 80px 0;
background: #fff;
}
.why-academy-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}
.academy-image-main img {
width: 100%;
height: 800px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-academy-text h3 {
font-size: 28px;
margin-bottom: 20px;
color: #333;
}
.why-academy-text p {
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}
.academy-highlights {
margin: 30px 0;
}
.highlight-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}
.highlight-item i {
font-size: 28px;
color: #FF1493;
flex-shrink: 0;
}
.highlight-item h4 {
font-size: 18px;
margin-bottom: 8px;
color: #333;
}
.highlight-item p {
color: #666;
font-size: 15px;
line-height: 1.6;
}
.career-launch-section {
padding: 80px 0;
background: #fff;
}
.career-content {
display: grid;
grid-template-columns: 1fr 400px;
gap: 60px;
align-items: start;
max-width: 1200px;
margin: 0 auto;
}
.career-text h3 {
font-size: 36px;
margin-bottom: 30px;
color: #000;
font-weight: 700;
line-height: 1.3;
text-align: left;
}
.career-text p {
color: #333;
line-height: 1.8;
margin-bottom: 20px;
font-size: 16px;
text-align: justify;
}
.career-text h4 {
font-size: 22px;
margin: 35px 0 20px;
color: #000;
font-weight: 700;
}
.career-opportunities,
.course-benefits {
display: block;
list-style: none;
margin: 20px 0;
padding: 0;
}
.career-opportunities li,
.course-benefits li {
display: flex;
align-items: flex-start;
padding: 10px 0;
color: #333;
font-size: 16px;
line-height: 1.35;
margin: 0;
}
.career-opportunities i,
.course-benefits i {
color: #FF1493;
font-size: 18px;
margin-right: 12px;
margin-top: 2px;
flex-shrink: 0;
}
.career-gallery {
display: block;
}
.career-gallery-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.career-img {
width: 100%;
height: 180px;
border-radius: 10px;
object-fit: cover;
}
.student-stories-section {
padding: 80px 0;
background: #fff;
}
.stories-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.story-card {
background: #f9f9f9;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.story-text {
color: #666;
line-height: 1.8;
margin-bottom: 20px;
font-style: italic;
}
.story-author {
display: flex;
gap: 15px;
align-items: center;
}
.student-photo {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
}
.story-author h4 {
font-size: 18px;
margin-bottom: 5px;
color: #333;
}
.story-author p {
color: #666;
font-size: 14px;
}
.enrollment-section {
padding: 80px 0;
background: #f9f9f9;
}
.enrollment-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}
.course-info-box,
.enrollment-form {
background: #fff;
padding: 40px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.course-info-box h3,
.enrollment-form h3 {
font-size: 24px;
margin-bottom: 30px;
color: #333;
}
.info-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid #f0f0f0;
}
.info-item:last-child {
border-bottom: none;
}
.info-item i {
font-size: 24px;
color: #FF1493;
flex-shrink: 0;
}
.info-item h4 {
font-size: 16px;
margin-bottom: 5px;
color: #333;
}
.info-item p {
color: #666;
font-size: 15px;
}
/* ===================================
11. CONTACT PAGE
=================================== */
.contact-main-section {
padding-top: 40px;
padding-bottom: 80px;
}
.contact-cards-section {
margin-bottom: 50px;
}
.contact-cards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
max-width: 1100px;
margin: 0 auto;
}
.contact-info-card {
background: #fff;
padding: 30px 25px;
border-radius: 14px;
text-align: center;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.contact-info-card h3 {
margin-bottom: 10px;
}
.contact-card-icon {
width: 60px;
height: 60px;
background: #ff5e94;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 15px;
font-size: 22px;
}
.contact-info-card a,
.contact-info-card p {
font-size: 14px;
color: #555;
line-height: 1.6;
}
.contact-form-section {
padding: 80px 0;
background: var(--bg-light);
}
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 25px;
}
.contact-item {
display: flex;
gap: 20px;
}
.contact-item i {
font-size: 24px;
color: var(--pink-primary);
flex-shrink: 0;
}
.contact-item h4 {
font-size: 18px;
margin-bottom: 5px;
color: var(--text-dark);
}
.contact-item p {
color: var(--text-light);
}
.contact-form {
background: transparent;
padding: 0;
border-radius: 0;
box-shadow: none;
}
.contact-form-box {
background: #fff;
padding: 35px;
border-radius: 14px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
margin-bottom: 50px;
}
.contact-form-box h2 {
text-align: center;
color: #ff2a8a;
}
.contact-form-box p {
text-align: center;
}
.contact-map-box {
background: #fff;
padding: 35px;
border-radius: 14px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.contact-map-box h2,
.contact-map-box p {
text-align: center;
}
.contact-map-box .map-container {
height: 300px;
border-radius: 10px;
overflow: hidden;
}
.social-links-large {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 30px;
}
.social-link-large {
display: flex;
align-items: center;
gap: 10px;
font-size: 18px;
font-weight: 600;
color: #ff2a8a;
text-decoration: none;
}
.social-link-large i {
font-size: 38px;
color: #ff2a8a;
}
.social-link-large:hover {
opacity: 0.8;
}
.form-group {
margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 16px 18px;
font-size: 15px;
border: 1px solid #e5e5e5;
border-radius: 8px;
outline: none;
color: #333;
margin-bottom: 18px;
box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: #bcbcbc;
font-weight: 400;
}
.form-group select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
background-repeat: no-repeat;
background-position: right 14px center;
background-size: 16px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--pink-primary);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
/* ===================================
12. FOOTER
=================================== */
.footer {
background: #2c2c2c;
color: var(--white);
padding: 60px 0 20px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 30px;
}
.footer-col h3 {
font-size: 20px;
margin-bottom: 20px;
color: var(--white);
}
.footer-col p {
color: #ccc;
line-height: 1.8;
margin-bottom: 15px;
}
.footer-col ul li {
margin-bottom: 10px;
}
.footer-col ul li a {
color: #ccc;
transition: var(--transition);
}
.footer-col ul li a:hover {
color: var(--pink-primary);
padding-left: 5px;
}
.social-icons {
display: flex;
gap: 15px;
}
.social-icons a {
width: 40px;
height: 40px;
background: var(--pink-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.social-icons a:hover {
background: var(--pink-hover);
transform: translateY(-3px);
}
.newsletter-form {
display: flex;
gap: 10px;
}
.newsletter-form input {
flex: 1;
padding: 10px 15px;
border: none;
border-radius: 5px;
}
.newsletter-form button {
padding: 10px 20px;
border: none;
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #444;
color: #ccc;
}
.footer .hero-contact-info {
display: flex;
flex-direction: column;
gap: 14px;
color: #fff;
}
.footer .hero-contact-info h3 {
margin-bottom: 12px;
}
.footer .hero-contact-info > div {
display: flex;
align-items: center;
gap: 10px;
line-height: 1.6;
}
.footer .hero-contact-info i {
color: #ff2a8a;
font-size: 16px;
min-width: 18px;
}
.footer .hero-contact-info span {
font-size: 14px;
word-break: break-word;
}
/* ===================================
13. RESPONSIVE (MEDIA QUERIES)
=================================== */
@media (max-width: 992px) {
.makeup-services-grid,
.why-choose-grid {
grid-template-columns: repeat(2, 1fr);
}
.brands-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-cards-grid,
.values-section .values-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.hamburger {
display: flex;
}
.nav-menu {
    position: fixed;
    top: 100px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 100px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    align-items: flex-start;
}

.nav-menu.active {
    right: 0;
}

.dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 10px;
    padding-left: 20px;
}

.hero-content h1 {
    font-size: 32px;
}

.hero-content p {
    font-size: 16px;
}

.section-title h2 {
    font-size: 28px;
}

.hero,
.page-hero {
    height: 400px;
}

.about-content,
.academy-content,
.contact-wrapper,
.why-academy-content,
.why-choose-content,
.career-content,
.enrollment-wrapper {
grid-template-columns: 1fr;
}
.form-row {
    grid-template-columns: 1fr;
}

.services-grid,
.gallery-grid,
.gallery-grid-main,
.makeup-services-grid,
.why-choose-grid,
.brands-grid,
.courses-grid,
.stories-container {
    grid-template-columns: 1fr;
}

.mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
}
@media (max-width: 576px) {
.contact-cards-grid,
.values-section .values-grid {
grid-template-columns: 1fr;
}
}

.career-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.career-text {
    flex: 1;
}

.career-image {
    flex: 0 0 380px;
    position: sticky;
    top: 100px;
}

.career-image img {
    width: 100%;
    height: 800px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

@media (max-width: 900px) {
    .career-content {
        flex-direction: column;
    }
    .career-image {
        flex: none;
        width: 100%;
        position: static;
    }
}
/* ═══════════════════════════════════════
   ACADEMY PAGE — Tab System & New Styles
   Only affects academy.html — no other pages
═══════════════════════════════════════ */

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #FF1493, #e91e8c);
    padding: 14px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.trust-item i { font-size: 15px; }

/* Hero CTA group */
.hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* Section subtitle */
.academy-section-subtitle {
    text-align: center;
    color: #777;
    font-size: 15px;
    margin-top: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Tab Buttons */
.course-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0 0;
    flex-wrap: wrap;
}
.tab-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 16px;
    border: 2px solid #eee;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    width: 180px;
    min-height: 110px;
    text-align: center;
}
.tab-btn i {
    font-size: 24px;
    margin-bottom: 2px;
}
.tab-btn .tab-duration {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    background: #f5f5f5;
    padding: 3px 12px;
    border-radius: 100px;
}
.tab-btn .tab-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF1493, #e91e8c);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 100px;
    white-space: nowrap;
}
.tab-btn:hover {
    border-color: #FF1493;
    color: #FF1493;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,20,147,0.15);
}
.tab-btn.active {
    border-color: #FF1493;
    background: linear-gradient(135deg, #FF1493, #e91e8c);
    color: #fff;
    box-shadow: 0 8px 32px rgba(255,20,147,0.35);
    transform: translateY(-4px);
}
.tab-btn.active .tab-duration {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.tab-btn.active i { color: #fff; }

/* Tab Panels */
.tab-panels { margin-top: 32px; }
.tab-panel { display: none; }
.tab-panel.active {
    display: block;
    animation: fadeInTab 0.35s ease;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Content Grid */
.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 48px rgba(255,20,147,0.1);
    border: 1px solid rgba(255,20,147,0.12);
    align-items: start;
}

/* Tab Header */
.tab-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.tab-icon-big {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF1493, #e91e8c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255,20,147,0.35);
}
.tab-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}
.tab-tagline {
    font-size: 13px;
    color: #888;
}

/* Tab Meta Row */
.tab-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.tab-meta-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    background: #f9f9f9;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid #eee;
}
.tab-meta-row i { color: #FF1493; }

/* Features */
.features-heading {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tab-features {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}
.tab-features.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.tab-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
}
.tab-features li:last-child { border-bottom: none; }
.tab-features i {
    color: #FF1493;
    font-size: 14px;
    flex-shrink: 0;
}

/* Tab CTA */
.tab-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #f5f5f5;
}
.fee-badge {
    background: linear-gradient(135deg, #fff5fa, #ffe0f0);
    border: 1.5px solid rgba(255,20,147,0.2);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #FF1493;
    line-height: 1.3;
}
.fee-badge span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #888;
}
.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-whatsapp-sm:hover { background: #1da851; }

/* Visual Card */
.tab-visual-card {
    background: linear-gradient(145deg, #fff5fa, #ffe8f3);
    border: 1.5px solid rgba(255,20,147,0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.visual-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF1493, #e91e8c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(255,20,147,0.3);
    margin-bottom: 4px;
}
.tab-visual-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}
.tab-visual-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.outcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}
.outcome-tags span {
    background: #fff;
    border: 1.5px solid rgba(255,20,147,0.25);
    color: #FF1493;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* Form improvements */
.form-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.form-note {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
}
.form-note i { color: #25D366; margin-right: 4px; }

/* ─── Academy Responsive ─── */
@media (max-width: 900px) {
    .tab-content-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .tab-content-grid {
        padding: 24px 18px;
    }
    .course-tabs {
        gap: 10px;
    }
    .tab-btn {
        width: calc(33% - 8px);
        min-width: 100px;
        padding: 16px 8px;
        font-size: 12px;
    }
    .tab-btn i { font-size: 18px; }
    .trust-items {
        gap: 14px;
    }
    .trust-item { font-size: 12px; }
    .tab-features.two-col {
        grid-template-columns: 1fr;
    }
    .tab-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .tab-cta .btn-pink,
    .tab-cta .btn-whatsapp-sm {
        text-align: center;
        justify-content: center;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 400px) {
    .tab-btn {
        width: calc(33% - 6px);
        min-width: 90px;
    }
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVENESS FIXES
═══════════════════════════════════════ */

@media (max-width: 768px) {
    
    /* Hero text sizes */
    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    .hero-content p {
        font-size: 14px !important;
    }
    .hero-subtitle {
        font-size: 12px !important;
    }
    
    /* Section titles */
    .section-title h2 {
        font-size: 22px !important;
    }
    
    /* Container padding */
    .container {
        padding: 0 16px !important;
    }
    
    /* Course tabs on mobile */
    .course-tabs {
        gap: 8px !important;
    }
    .tab-btn {
        width: 100% !important;
        min-width: unset !important;
        padding: 14px 12px !important;
        font-size: 12px !important;
        min-height: 90px !important;
    }
    .tab-btn i {
        font-size: 20px !important;
    }
    
    /* Tab content grid */
    .tab-content-grid {
        grid-template-columns: 1fr !important;
        padding: 20px 16px !important;
        gap: 20px !important;
    }
    
    /* Tab features */
    .tab-features.two-col {
        grid-template-columns: 1fr !important;
    }
    
    /* Tab CTA */
    .tab-cta {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .tab-cta .btn-pink,
    .tab-cta .btn-whatsapp-sm {
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    /* Enrollment wrapper */
    .enrollment-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Trust bar */
    .trust-items {
        gap: 12px !important;
    }
    .trust-item {
        font-size: 11px !important;
    }
    
    /* Career section */
    .career-content {
        flex-direction: column !important;
    }
    .career-image {
        flex: none !important;
        width: 100% !important;
        position: static !important;
    }
    .career-image img {
        height: 400px !important;
    }
    .career-text h3 {
        font-size: 22px !important;
    }
    
    /* Academy image */
    .academy-image-main img {
        height: 400px !important;
    }
    
    /* Stories grid */
    .stories-container {
        grid-template-columns: 1fr !important;
    }
    
    /* Gallery grid */
    .gallery-grid-main {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    /* Contact cards */
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    /* FAQ spacing */
    .faq-question h3 {
        font-size: 14px !important;
    }
    
    /* Buttons */
    .btn-pink, .btn-pink-outline, .btn-whatsapp {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
    
    /* Hero CTA group */
    .hero-cta-group {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Brochure section */
    .brochure-cta-section h2 {
        font-size: 22px !important;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 20px !important;
    }
    .section-title h2 {
        font-size: 18px !important;
    }
    .gallery-grid-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .tab-btn {
        font-size: 11px !important;
        padding: 10px 6px !important;
    }
}

/* ===================================
   PRIVACY POLICY PAGE
   =================================== */

.privacy-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.privacy-updated {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

.privacy-updated i {
    color: #FF1493;
    margin-right: 8px;
}

.privacy-intro {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-block {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-number {
    width: 36px;
    height: 36px;
    background: #FF1493;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-block p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #666;
    font-size: 16px;
    border-bottom: 1px solid #f9f9f9;
    line-height: 1.6;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list li i {
    color: #FF1493;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.privacy-contact-info {
    margin-top: 25px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FF1493;
}

.privacy-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #666;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.privacy-contact-item:last-child {
    border-bottom: none;
}

.privacy-contact-item i {
    color: #FF1493;
    font-size: 18px;
    width: 20px;
}

.privacy-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.privacy-cta .btn-pink i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 30px 20px;
    }

    .privacy-block h2 {
        font-size: 18px;
    }
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 768px) {
    /* All images responsive */
    img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }

    /* Hero backgrounds centered */
    .hero,
    .page-hero,
    .makeup-hero,
    .salon-hero,
    .about-hero,
    .gallery-hero,
    .academy-hero,
    .contact-hero {
        background-position: center top !important;
        background-size: cover !important;
    }

    /* All grids single column */
    .services-grid,
    .gallery-grid,
    .about-content,
    .academy-content,
    .contact-wrapper,
    .why-choose-grid,
    .brands-grid,
    .courses-grid,
    .stories-container,
    .makeup-services-grid,
    .facilities-grid,
    .mission-vision-grid,
    .values-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        overflow: hidden !important;
    }

    .contact-item p {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 0 !important;
    }

    .enquiry-float {
        bottom: 80px !important;
        right: 15px !important;
    }

    #mm-whatsapp {
        bottom: 20px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }

    #mm-launcher-wrap {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Academy form fix */
    .enrollment-wrapper {
        grid-template-columns: 1fr !important;
    }

    .enrollment-form,
    .course-info-box {
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Story author fix */
    .story-author {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .stories-container {
        grid-template-columns: 1fr !important;
    }

    .story-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Countdown timer fix */
    .countdown-timer {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    #mm-launcher-wrap {
        display: block !important;
        bottom: 80px !important;
        right: 15px !important;
    }
}

@media (max-width: 768px) {
    /* Salon intro fix */
    .salon-intro {
        grid-template-columns: 1fr !important;
    }

    .salon-intro-image img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
    }

    /* Contact item email fix */
    .contact-item p {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        font-size: 13px !important;
    }

    /* Form fields fix */
    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    .enquiry-float {
        bottom: 80px !important;
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 10px !important;
    }

    #mm-whatsapp {
        bottom: 20px !important;
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
    }

    #mm-launcher-wrap {
        bottom: 80px !important;
        right: 70px !important;
    }
}

@media (max-width: 768px) {
    .enquiry-float {
        bottom: 140px !important;
        right: 10px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 10px !important;
        z-index: 9998 !important;
    }

    #mm-whatsapp {
        bottom: 80px !important;
        right: 10px !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 9998 !important;
    }

    #mm-launcher-wrap {
        display: none !important;
    }
}
