@font-face {
    font-family: 'PP Mori';
    src: url('/fonts/Poppins-Regular.ttf') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'PP Mori Light';
    src: url('/fonts/Poppins-Light.ttf') format('woff2');
    font-weight: 200;
}

:root {
    --primary: #9f6734;
    --primary-light: #e8d2b8;
    --dark: #171928;
    --light: #f8f8f8;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: 'PP Mori', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--white);
}

/* Intro/Loader Styles */
.intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f0e5 0%, #e8d2b8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.intro-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 180px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.loader-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    color: #9f6734;
    letter-spacing: 3px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.loader-progress {
    width: 280px;
    height: 4px;
    background: rgba(159, 103, 52, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: #9f6734;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.loader-quote {
    position: absolute;
    bottom: 60px;
    font-style: italic;
    color: #9f6734;
    opacity: 0.8;
    font-size: 18px;
    text-align: center;
    max-width: 80%;
    opacity: 0;
}

/* Animated makeup brush */
.makeup-brush {
    position: absolute;
    width: 40px;
    height: 120px;
    opacity: 0;
}

.brush-handle {
    position: absolute;
    width: 20px;
    height: 80px;
    background: linear-gradient(to bottom, #9f6734, #7a4f28);
    border-radius: 10px 10px 0 0;
    left: 10px;
    top: 0;
}

.brush-bristles {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #e8d2b8;
    border-radius: 20px;
    top: 80px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Responsive styles for loader */
@media (max-width: 768px) {
    .loader-logo {
        width: 120px;
        margin-bottom: 28px;
    }
    .loader-text {
        font-size: 18px;
        margin-bottom: 28px;
    }
    .loader-progress {
        width: 180px;
        height: 3px;
    }
    .loader-quote {
        font-size: 15px;
        bottom: 30px;
        max-width: 90%;
    }
    .makeup-brush {
        width: 28px;
        height: 80px;
    }
    .brush-handle {
        width: 12px;
        height: 50px;
        left: 8px;
    }
    .brush-bristles {
        width: 28px;
        height: 28px;
        top: 50px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 80px;
        margin-bottom: 18px;
    }
    .loader-text {
        font-size: 14px;
        margin-bottom: 18px;
        letter-spacing: 1.5px;
    }
    .loader-progress {
        width: 110px;
        height: 2px;
    }
    .loader-quote {
        font-size: 12px;
        bottom: 16px;
        max-width: 98%;
    }
    .makeup-brush {
        width: 18px;
        height: 50px;
    }
    .brush-handle {
        width: 7px;
        height: 30px;
        left: 5.5px;
    }
    .brush-bristles {
        width: 18px;
        height: 18px;
        top: 30px;
    }
}

/* Main content initially hidden */
.main-content {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.main-content.visible {
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
    height: 100%;
}

/* Enhanced Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    transition: var(--transition);
}

nav.scrolled .nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: translateX(-100%);
    transition: var(--transition);
}

.dropdown-toggle.nav-link::before {
    display: none;
}

.nav-link:hover:before,
.nav-link.active:before {
    transform: translateX(0);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Enhanced Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    border-radius: 50%;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(159, 103, 52, 0.1);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 3px;
    position: absolute;
}

.hamburger span:nth-child(1) {
    transform: translateY(-10px);
    width: 25px;
    margin-right: 5px;
    align-self: flex-end;
}

.hamburger span:nth-child(2) {
    width: 30px;
}

.hamburger span:nth-child(3) {
    transform: translateY(10px);
    width: 20px;
    margin-left: 5px;
    align-self: flex-start;
}

/* Hamburger animation */
.hamburger.active {
    transform: rotate(180deg);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    width: 30px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    width: 30px;
}

/* Enhanced Dropdown Animation */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    perspective: 1000px;
    transform-origin: top center;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #171928;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    transform: translateX(-20px);
    opacity: 0;
}

.dropdown:hover .dropdown-item {
    transform: translateX(0);
    opacity: 1;
}

/* Staggered animation for each item */
.dropdown:hover .dropdown-item:nth-child(1) { transition-delay: 0.05s; }
.dropdown:hover .dropdown-item:nth-child(2) { transition-delay: 0.1s; }
.dropdown:hover .dropdown-item:nth-child(3) { transition-delay: 0.15s; }
.dropdown:hover .dropdown-item:nth-child(4) { transition-delay: 0.2s; }
.dropdown:hover .dropdown-item:nth-child(5) { transition-delay: 0.25s; }
.dropdown:hover .dropdown-item:nth-child(6) { transition-delay: 0.3s; }
.dropdown:hover .dropdown-item:nth-child(7) { transition-delay: 0.35s; }
.dropdown:hover .dropdown-item:nth-child(8) { transition-delay: 0.4s; }

/* Hover effect for dropdown items */
.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 103, 52, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

/* Icon animation */
.dropdown-item i {
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    width: 16px;
    text-align: center;
}

.dropdown:hover .dropdown-item i {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced dropdown appearance */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    padding: 12px 25px;
    font-size: 14px;
    color: #171928;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(159, 103, 52, 0.05);
    color: #9f6734;
    border-left: 3px solid #9f6734;
    padding-left: 30px;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        gap: 0;
        transition: var(--transition);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:before {
        display: none;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    
    .dropdown-toggle i {
        transition: var(--transition);
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        background-color: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        color: #171928;
        transform: none;
        opacity: 1;
        text-align: center;
        padding-left: 20px !important;
        border-left: none !important;
    }
    
    .dropdown-item i {
        opacity: 1;
        transform: none;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    /* .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    } */
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* Hero Section with Enhanced Animations */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('../images/hero.avif') no-repeat center/cover;
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    color: var(--primary-light);
    display: block;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn:hover {
    background-color: var(--primary-light);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(232, 210, 184, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* About Section */
.about-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.about-brush {
    position: absolute;
    width: 40px;
    height: 120px;
    opacity: 0;
    z-index: 2;
}

.brush-left {
    bottom: -50px;
    left: 5%;
    transform: rotate(-15deg);
}

.brush-right {
    bottom: -50px;
    right: 5%;
    transform: rotate(15deg);
}

.brush-handle {
    position: absolute;
    width: 20px;
    height: 80px;
    background: linear-gradient(to bottom, #9f6734, #7a4f28);
    border-radius: 10px 10px 0 0;
    left: 10px;
    top: 0;
}

.brush-bristles {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #e8d2b8;
    border-radius: 20px;
    top: 80px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Animation classes */
.brush-left.revealed {
    animation: brushRevealLeft 1.5s ease-out forwards;
}

.brush-right.revealed {
    animation: brushRevealRight 1.5s ease-out forwards;
}

@keyframes brushRevealLeft {
    0% {
        opacity: 0;
        bottom: -50px;
        transform: rotate(-15deg) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: rotate(-5deg) scale(1.1);
    }
    100% {
        opacity: 1;
        bottom: 50px;
        transform: rotate(-15deg) scale(1);
    }
}

@keyframes brushRevealRight {
    0% {
        opacity: 0;
        bottom: -50px;
        transform: rotate(15deg) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: rotate(5deg) scale(1.1);
    }
    100% {
        opacity: 1;
        bottom: 50px;
        transform: rotate(15deg) scale(1);
    }
}

/* Continuous subtle animation after reveal */
@keyframes brushFloat {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-5px);
    }
}

.brush-left.revealed {
    animation: brushRevealLeft 1.5s ease-out forwards, brushFloat 3s ease-in-out infinite 1.5s;
}

.brush-right.revealed {
    animation: brushRevealRight 1.5s ease-out forwards, brushFloat 3s ease-in-out infinite 1.5s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-brush {
        width: 30px;
        height: 90px;
    }
    
    .brush-handle {
        width: 15px;
        height: 60px;
        left: 7.5px;
    }
    
    .brush-bristles {
        width: 30px;
        height: 30px;
        top: 60px;
    }
    
    .brush-left {
        left: 3%;
    }
    
    .brush-right {
        right: 3%;
    }
    
    @keyframes brushRevealLeft {
        100% {
            bottom: 30px;
        }
    }
    
    @keyframes brushRevealRight {
        100% {
            bottom: 30px;
        }
    }
}

@media (max-width: 768px) {
    .about-brush {
        display: none; /* Hide brushes on mobile for better space usage */
    }
}


.about-content {
    position: relative;
    padding: 4rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    overflow: hidden;
}

.about-content:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(159, 103, 52, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 6s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.about-content h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    opacity: 0;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
}

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

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

/* Academy Section */
.academy-section {
    padding: 8rem 0;
    position: relative;
}

.academy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.academy-content {
    opacity: 0;
    transform: translateX(-50px);
}

.academy-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.academy-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.academy-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 2rem 0;
}

.academy-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.academy-btn:hover {
    background-color: var(--primary-light);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.academy-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(50px);
}

.academy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Expect Section */
.expect-section {
    padding: 8rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.expect-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.expect-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
}

.expect-header h3 {
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.expect-header h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expect-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
}

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

.expect-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.expect-card p {
    color: #666;
    line-height: 1.6;
}

/* Gorgeous Section */
.gorgeous-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gorgeous-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.avif') no-repeat center/cover;
    background-attachment: fixed;
}

.gorgeous-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(159, 103, 52, 0.3));
}

.gorgeous-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.gorgeous-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.gorgeous-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gorgeous-subtext {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-light);
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-header h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    aspect-ratio: 4/5;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
} */

.gallery-category {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #d4b9a2;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    color: white;
    text-align: center;
    width: 100%;
    font-size: 1.1rem;
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(159, 103, 52, 0.8);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-header h2 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gallery-header {
        padding: 60px 0 30px;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-slider {
    margin-top: 5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 0 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(159, 103, 52, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
    font-style: italic;
}

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

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    background: #ddd;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--primary);
    font-size: 0.9rem;
}

/* contact design  */
.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 60px 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3rem;
    color: #9f6734;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #7a7a7a;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
}

.info-title {
    font-size: 1.8rem;
    color: #9f6734;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.info-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #9f6734;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #9f6734;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.contact-text {
    color: #555;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 1.8rem;
    color: #9f6734;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #9f6734;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2a2a2a;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #9f6734;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #9f6734;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #7a4f28;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col {
    opacity: 0;
    transform: translateY(30px);
}

.footer-col h3 {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #aaa;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.footer-contact p a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact p:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.footer-services {
    list-style: none;
}

.footer-services li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #aaa;
}

.footer-services li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.footer-services li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-services li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.subscribe-input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.subscribe-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.subscribe-btn:hover {
    background: var(--primary-light);
    color: var(--dark);
}

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .academy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gorgeous-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .academy-title {
        font-size: 2rem;
    }
    
    .expect-header h2 {
        font-size: 2.2rem;
    }
    
    .gorgeous-title {
        font-size: 2.5rem;
    }
    
    .gallery-header h2 {
        font-size: 2.2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
    }
    
    .service-card, .expect-card, .testimonial-card {
        padding: 1.5rem;
    }
}