@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --primary-pink: #ff85a2;
    --deep-pink: #ff4d6d;
    --soft-pink: #fde2e4;
    --gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f1d592 100%);
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --pink-gradient: linear-gradient(135deg, #ff85a2 0%, #ff4d6d 100%);
}

/* Hidden on Desktop by Default */
.mobile-bottom-nav {
    display: none !important;
}

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

/* --- Ultra-Premium WOW Background --- */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(45deg, #ff85a2, #ffebf0, #fde2e4, #ffd1dc);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    /* Faster and more color */
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.blur-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: floatBlob 12s infinite alternate ease-in-out;
}

.blob-1 {
    top: -100px;
    left: -100px;
    animation-duration: 20s;
}

.blob-2 {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.blob-3 {
    top: 30%;
    left: 20%;
    width: 400px;
    height: 400px;
    animation-duration: 12s;
    background: radial-gradient(circle, rgba(255, 133, 162, 0.25) 0%, transparent 70%);
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(200px, 100px) scale(1.2);
    }
}

/* Floating Art Icons Background */
.art-floating-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.art-icon {
    position: absolute;
    color: var(--primary-pink);
    opacity: 0.15;
    filter: blur(1px);
    animation: artFloat 15s infinite linear;
}

@keyframes artFloat {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(30px, 50px) rotate(10deg) scale(1.1);
    }

    66% {
        transform: translate(-20px, 80px) rotate(-10deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

.ai-1 {
    top: 10%;
    left: 10%;
    font-size: 4rem;
    animation-duration: 20s;
}

.ai-2 {
    top: 20%;
    right: 15%;
    font-size: 3rem;
    animation-duration: 25s;
    opacity: 0.1;
}

.ai-3 {
    bottom: 15%;
    left: 5%;
    font-size: 5rem;
    animation-duration: 18s;
    transform: rotate(-45deg);
}

.ai-4 {
    bottom: 20%;
    right: 10%;
    font-size: 3.5rem;
    animation-duration: 22s;
    color: var(--deep-pink);
}

.ai-5 {
    top: 50%;
    left: 50%;
    font-size: 2rem;
    animation-duration: 30s;
}

.ai-6 {
    top: 40%;
    left: 5%;
    font-size: 4.5rem;
    animation-duration: 28s;
}

.ai-7 {
    top: 60%;
    right: 5%;
    font-size: 4rem;
    animation-duration: 24s;
    opacity: 0.12;
}

.ai-8 {
    bottom: 5%;
    left: 40%;
    font-size: 3.5rem;
    animation-duration: 26s;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: #fff;
    /* Fallback */
}


section {
    padding: 120px 10%;
    position: relative;
}

/* Sections after a wave divider get white backgrounds for smooth transitions */
.section-about,
#gallery,
#contact {
    background: #ffffff;
}

.divider-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}

.divider-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.divider-wave .shape-fill {
    fill: #ffffff;
}


h1,
h2,
h3,
.brand {
    font-family: 'Playfair Display', serif;
}

.script-font {
    font-family: 'Dancing Script', cursive;
    color: var(--deep-pink);
}

/* WOW Background Sparkles */
.sparkle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.5;
    animation: moveSparkle 10s infinite linear;
}

@keyframes moveSparkle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* --- Ultra WOW Header --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(255, 133, 162, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header.scrolled {
    top: 10px;
    width: 98%;
    padding: 8px 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 50px rgba(255, 77, 109, 0.15);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: 0.5s;
}

.logo span {
    white-space: nowrap;
}

.logo:hover img {
    transform: rotate(5deg) scale(1.1);
}

.logo i {
    font-size: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    animation: rotateWand 3s infinite ease-in-out;
}

@keyframes rotateWand {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }
}

#main-header .desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

#main-header .desktop-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 50px;
    transition: 0.3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: block;
}

nav ul li a:hover {
    color: var(--deep-pink);
    background: rgba(255, 133, 162, 0.1);
}

/* Dropdown styles */
#main-header .desktop-nav ul li.dropdown {
    position: relative;
}

#main-header .desktop-nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 10px;
    border: 1px solid rgba(255, 77, 109, 0.1);
    z-index: 1001;
}

.dropdown-menu li {
    margin: 0 !important;
    display: block !important;
    padding: 0 !important;
}

.dropdown-menu li a {
    padding: 10px 20px !important;
    border-radius: 0 !important;
    font-size: 0.85rem !important;
    display: block !important;
    background: transparent !important;
    color: var(--text-dark) !important;
    text-align: left;
}

.dropdown-menu li a:hover {
    background: rgba(255, 77, 109, 0.05) !important;
    color: var(--deep-pink) !important;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Header Action Button (Optional WOW) */
.header-cta {
    background: var(--deep-pink);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
    transition: 0.3s;
    white-space: nowrap;
}

/* Header Buttons & Mobile Toggle */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-pink);
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 77, 109, 0.98);
    backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    /* Changed from translateY(-100%) */
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}


.menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content ul {
    list-style: none;
    margin-bottom: 50px;
}

.mobile-menu-content ul li {
    margin-bottom: 25px;
}

.mobile-menu-content ul li a {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: 0.3s;
}

.mobile-menu-content ul li a:hover {
    color: var(--soft-pink);
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-socials a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Hero Section Upgrade */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 10% 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.hero h1 span {
    background: linear-gradient(to right, var(--deep-pink), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Professional Brush Stroke Slogan */
.exact-brush-wrapper {
    position: relative;
    margin: 40px 0;
    padding: 20px 0;
    max-width: 650px;
    display: inline-block;
}

.brush-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: url(#brush-bristles);
}

.stroke {
    position: absolute;
    background: var(--soft-pink);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    opacity: 0.8;
}

.stroke-main {
    width: 110%;
    height: 80%;
    top: 10%;
    left: -5%;
    background: linear-gradient(90deg, #ffe5ea, #fff1f3, #ffe5ea);
    transform: rotate(-1.5deg);
}

.stroke-left-tail {
    width: 30%;
    height: 60%;
    left: -10%;
    top: 20%;
    background: #ffd1dc;
    transform: rotate(-10deg);
}

.stroke-right-tail {
    width: 25%;
    height: 50%;
    right: -8%;
    top: 15%;
    background: #ffd1dc;
    transform: rotate(15deg);
}

.stroke-bottom-line {
    width: 90%;
    height: 15px;
    bottom: 5%;
    left: 5%;
    background: var(--deep-pink);
    opacity: 0.15;
    filter: blur(8px);
}

.brush-text {
    position: relative;
    z-index: 2;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--deep-pink);
    font-weight: 700;
    padding: 0 40px;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    padding: 18px 30px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    color: var(--deep-pink);
    transform: translateX(10px);
}

/* Artistic Hero Visual (Matching Inspiration) */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.hero-main-frame {
    position: relative;
    width: 550px;
    /* Increased frame size */
    height: 650px;
    /* Increased frame size */
    margin: 0 auto;
}

.main-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%;
    /* Organic blob shape restored */
    border: 15px solid rgba(255, 133, 162, 0.3);
    padding: 40px;
    /* Reduced padding to make logo larger */
    box-shadow: 0 20px 50px rgba(255, 77, 109, 0.1);
    animation: blobMorph 10s linear infinite alternate;
    background: #fef1f3;
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%;
    }

    50% {
        border-radius: 50% 60% 40% 60% / 50% 40% 60% 50%;
    }

    100% {
        border-radius: 40% 60% 30% 70% / 60% 50% 40% 30%;
    }
}
@keyframes orbit-float-1 {
    0% { transform: rotate(-12deg) translate(0, 0); }
    33% { transform: rotate(-10deg) translate(15px, -10px); }
    66% { transform: rotate(-14deg) translate(-10px, 15px); }
    100% { transform: rotate(-12deg) translate(0, 0); }
}

@keyframes orbit-float-2 {
    0% { transform: rotate(15deg) translate(0, 0); }
    33% { transform: rotate(17deg) translate(-15px, 15px); }
    66% { transform: rotate(13deg) translate(10px, -10px); }
    100% { transform: rotate(15deg) translate(0, 0); }
}

@keyframes orbit-float-3 {
    0% { transform: rotate(-8deg) translate(0, 0); }
    33% { transform: rotate(-6deg) translate(10px, 15px); }
    66% { transform: rotate(-10deg) translate(-15px, -10px); }
    100% { transform: rotate(-8deg) translate(0, 0); }
}

@keyframes orbit-float-4 {
    0% { transform: rotate(20deg) translate(0, 0); }
    33% { transform: rotate(22deg) translate(15px, 10px); }
    66% { transform: rotate(18deg) translate(-10px, -15px); }
    100% { transform: rotate(20deg) translate(0, 0); }
}

@keyframes orbit-float-5 {
    0% { transform: rotate(-5deg) translate(0, 0); }
    33% { transform: rotate(-3deg) translate(-10px, -15px); }
    66% { transform: rotate(-7deg) translate(15px, 10px); }
    100% { transform: rotate(-5deg) translate(0, 0); }
}

/* Floating Thumbnails on the right */
.thumb {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 6px solid white;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    z-index: 10;
}

.thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 20;
}

.thumb-1 {
    top: 5%;
    right: -110px;
    width: 160px;
    height: 160px;
    animation: orbit-float-1 8s ease-in-out infinite;
}

.thumb-2 {
    top: 28%;
    right: -180px;
    width: 140px;
    height: 140px;
    animation: orbit-float-2 10s ease-in-out infinite;
}

.thumb-3 {
    top: 55%;
    right: -150px;
    width: 155px;
    height: 155px;
    animation: orbit-float-3 9s ease-in-out infinite;
}

.thumb-4 {
    bottom: 0%;
    right: -60px;
    width: 130px;
    height: 130px;
    animation: orbit-float-4 11s ease-in-out infinite;
}

.thumb-5 {
    bottom: -15%;
    right: 80px;
    width: 145px;
    height: 145px;
    animation: orbit-float-5 7s ease-in-out infinite;
    z-index: 5;
}

/* Quote Bubble */
.hero-quote-bubble {
    position: absolute;
    bottom: 20px;
    left: -50px;
    background: #ff85a2;
    padding: 20px 30px;
    border-radius: 50px 50px 50px 10px;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 133, 162, 0.4);
    z-index: 15;
    animation: bubbleFloat 4s ease-in-out infinite;
}

.hero-quote-bubble p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0;
}

.hero-quote-bubble span {
    font-weight: 700;
    font-size: 1.6rem;
}

.small-heart {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.8rem;
    opacity: 0.8;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Elements */
.floating-heart {
    position: absolute;
    top: 30%;
    left: -80px;
    font-size: 2.5rem;
    color: #ff85a2;
    opacity: 0.4;
    animation: heartFloat 5s infinite;
}

@keyframes heartFloat {
    0% {
        transform: translateY(0) scale(1) rotate(0);
    }

    50% {
        transform: translateY(-20px) scale(1.1) rotate(15deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(0);
    }
}

.hero-sparkle-1 {
    position: absolute;
    top: 5%;
    right: -20px;
    color: var(--gold);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.hero-sparkle-2 {
    position: absolute;
    bottom: 40%;
    left: -30px;
    color: var(--gold);
    font-size: 1.2rem;
    animation: pulse 2s infinite 1s;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.btn-glow {
    position: relative;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: var(--deep-pink);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.4s;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.4);
}

.btn-glow:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 77, 109, 0.6);
}

/* Sections */

.section-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--deep-pink);
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

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

.section-title h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
}

/* Modern Service Cards */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-box {
    background: white;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    transition: 0.5s;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 133, 162, 0.15);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: 0.5s;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--deep-pink);
}

/* Modern Bento Gallery */
.gallery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 25px;
    padding: 0 5%;
}

.gallery-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    background: #fdf2f4;
}

/* Bento Effect - Desktop */
.gallery-card:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-card:nth-child(5n+3) { grid-row: span 2; }

.gallery-card a { display: block; width: 100%; height: 100%; }

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

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

.gallery-card:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 { font-size: 1.25rem; margin-bottom: 5px; font-weight: 700; }
.gallery-info span { font-size: 0.9rem; opacity: 0.8; display: flex; align-items: center; gap: 8px; }
.gallery-info span::before { content: '\f03e'; font-family: 'Font Awesome 5 Free'; font-weight: 900; }

/* Testimonials */
.testimonials {
    background: var(--soft-pink);
    border-radius: 50px;
    padding: 100px 50px;
    text-align: center;
}

.testi-card {
    max-width: 700px;
    margin: 0 auto;
}

.testi-card i {
    font-size: 3rem;
    color: var(--deep-pink);
    opacity: 0.3;
    margin-bottom: 30px;
}

.testi-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact Section Upgrade */
.contact-section {
    display: flex;
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.05);
}

.contact-visual {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&q=80&w=800') center/cover;
    position: relative;
}

.contact-form-wrap {
    flex: 1.2;
    padding: 80px;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    background: #f9f9f9;
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary-pink);
    background: white;
    outline: none;
    box-shadow: 0 10px 20px rgba(255, 133, 162, 0.08);
}

/* Footer */
footer {
    padding: 100px 10% 40px;
    background: #1a1a1a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-col h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-col li {
        display: flex !important;
        justify-content: center !important;
        text-align: center;
        margin-bottom: 10px !important;
    }
    .social-round {
        justify-content: center;
    }
    .footer-col div {
        justify-content: center !important;
    }
    .footer-socials {
        justify-content: center;
    }
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--deep-pink);
}

.footer-col p,
.footer-col li {
    color: #999;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary-pink);
}

.social-round {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-round a {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.social-round a:hover {
    background: var(--deep-pink);
    transform: translateY(-5px);
}

/* Academy Global Styles */
.academy-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.academy-subtitle {
    font-size: 1.2rem;
    color: var(--deep-pink);
    font-weight: 600;
    margin-bottom: 20px;
}

.academy-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.academy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-magic {
    text-align: center;
}

.loader-magic i {
    font-size: 3rem;
    color: var(--deep-pink);
    animation: magicWand 2s infinite ease-in-out;
}

@keyframes magicWand {

    0%,
    100% {
        transform: rotate(0) scale(1);
        filter: drop-shadow(0 0 0px var(--primary-pink));
    }

    50% {
        transform: rotate(45deg) scale(1.2);
        filter: drop-shadow(0 0 20px var(--primary-pink));
    }
}

/* Custom Cursor Trail - Hidden on mobile */
@media (pointer: fine) {
    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--deep-pink);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 10000;
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 2px solid var(--primary-pink);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 10000;
        transition: 0.1s ease-out;
    }
}

@media (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Floating Contact Bubbles (Global) */
.floating-contacts {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column-reverse;
    /* Expand UPWARDS from the bottom */
    gap: 12px;
    z-index: 1001;
}

.bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
    cursor: pointer;
}

.bubble:hover {
    transform: scale(1.1) rotate(5deg);
}

.bubble.phone {
    background: #2ecc71;
}

.bubble.zalo {
    background: #0068ff;
}

.bubble.fb {
    background: #1877f2;
}

.bubble.back-to-top {
    background: var(--gold-gradient);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.bubble.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.bubble-label {
    position: absolute;
    right: 75px;
    background: white;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bubble:hover .bubble-label {
    opacity: 1;
    right: 80px;
}

/* Social Toggle Button (Mobile Only) */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: var(--deep-pink);
    color: white;
    z-index: 1001;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.4);
}

.menu-toggle .close-icon {
    display: none;
}

.floating-contacts.active .menu-toggle {
    background: #636e72;
}

.floating-contacts.active .menu-toggle .open-icon {
    display: none;
}

.floating-contacts.active .menu-toggle .close-icon {
    display: block;
}

/* Section Dividers */
.divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-wave.gentle-wave svg {
    height: 60px;
}


.divider-wave .shape-fill {
    fill: #ffffff;
}


/* Hover Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.hidden-item {
    display: none !important;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 5%;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }
}

.section-about {
    background: white !important;
    padding-top: 80px;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    header {
        width: 92%;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 15px;
        top: 10px;
        justify-content: space-between;
        height: 70px;
    }

    .desktop-nav { display: none; }
    section { padding-left: 15px !important; padding-right: 15px !important; width: 100% !important; overflow-x: hidden !important; box-sizing: border-box !important; }
    .section-about { padding-top: 30px; }
    .mobile-menu-btn { display: block; margin-left: auto; font-size: 1.8rem; }
    .header-cta { display: none; }
    .logo { margin-right: auto; gap: 10px; }
    .logo img { height: 48px; }
    .logo span { font-size: 1.3rem; white-space: nowrap; font-weight: 700; color: var(--deep-pink); }

    .floating-contacts { bottom: 100px; transform: scale(0.9); transform-origin: bottom right; }
    .menu-toggle { display: flex !important; justify-content: center; align-items: center; }
    .floating-contacts a.bubble { position: absolute; bottom: 0; opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.5); transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); z-index: -1; }
    .floating-contacts.active a.bubble { position: relative; bottom: auto; opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); z-index: 1; }

    .hero { padding-top: 120px; padding-bottom: 120px; text-align: center; }
    .hero-container { display: flex; flex-direction: column-reverse; gap: 30px; align-items: center; }
    .hero-content { width: 100%; display: flex; flex-direction: column; align-items: center; z-index: 10; }
    .hero h1 { font-size: 2.3rem; line-height: 1.2; margin-bottom: 15px; }
    .hero p { font-size: 0.95rem; margin: 0 auto 20px; line-height: 1.6; max-width: 90%; }
    .brush-text { font-size: 1.3rem; white-space: normal; padding: 0 15px; text-align: center; line-height: 1.4; }
    .exact-brush-wrapper { margin: 20px 0; padding: 15px 0; }
    .hero-btns { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .hero-btns .btn-glow, .hero-btns .btn-secondary { width: 100%; max-width: 280px; padding: 14px; }

    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        height: 70px;
        border-radius: 25px;
        z-index: 999999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.4);
        align-items: center;
        justify-content: space-around;
        padding: 0 10px;
    }

    .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #666; transition: 0.3s; flex: 1; }
    .nav-item i { font-size: 1.2rem; margin-bottom: 4px; }
    .nav-item span { font-size: 0.7rem; font-weight: 600; }
    .nav-item-center { position: relative; width: 60px; height: 60px; margin-top: -45px; }
    .nav-center-btn { width: 60px; height: 60px; background: var(--pink-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4); border: 4px solid white; text-decoration: none; transition: 0.3s; }

    .hero-visual { margin-top: 30px; margin-bottom: 40px; height: 400px; overflow: hidden !important; border-radius: 30px; background: #fff; display: flex !important; justify-content: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); position: relative; }
    .hero-visual .hero-main-frame { display: none !important; }
    .slider-container { display: flex !important; height: 100%; width: 100%; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
    .hero-visual .thumb { flex: 0 0 100% !important; width: 100% !important; height: 100% !important; position: relative !important; display: block !important; transform: none !important; opacity: 1 !important; box-shadow: none !important; border-radius: 0 !important; margin: 0 !important; top: 0 !important; left: 0 !important; }
    .hero-visual .thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 30px !important; display: block !important; }
    .slider-nav { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; align-items: center; gap: 15px; z-index: 100; }
    .nav-btn { width: 42px; height: 42px; border-radius: 50%; background: white; border: 1px solid rgba(255, 77, 109, 0.2); color: var(--deep-pink); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transition: 0.3s; }
    .slider-dots { display: flex; gap: 8px; background: rgba(0, 0, 0, 0.1); padding: 8px 12px; border-radius: 20px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); transition: all 0.3s ease; }
    .dot.active { width: 22px; border-radius: 10px; background: white; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }

    .hero-quote-bubble, .floating-heart { display: none !important; }
    .section-title h2 { font-size: 1.8rem; text-align: center; }

    .contact-section { flex-direction: column; border-radius: 30px; margin: 0 10px; }
    .contact-visual { width: 100%; height: 300px; border-radius: 30px 30px 0 0; }
    .contact-form-wrap { padding: 40px 25px; width: 100%; }
    .contact-form-wrap h2 { font-size: 2.2rem !important; text-align: center; }
    .contact-form-wrap p { text-align: center; }

    /* Modern Bento Gallery - Mobile */
    .gallery-wrap {
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 160px !important;
        gap: 12px !important;
        padding: 0 15px 100px !important;
        box-sizing: border-box !important;
    }

    .gallery-card {
        border-radius: 20px !important;
    }

    .gallery-card:nth-child(5n+1) { grid-column: span 2 !important; grid-row: span 2 !important; }
    .gallery-card:nth-child(5n+4) { grid-row: span 2 !important; }

    .gallery-info {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%) !important;
        padding: 15px !important;
    }

    .gallery-info h4 { font-size: 1rem !important; }
    .gallery-info span { font-size: 0.75rem !important; }

    .section-academy .container { flex-direction: column !important; gap: 30px !important; text-align: center; }
    .academy-visual { width: 100%; max-width: 400px; min-width: unset !important; margin: 0 auto; }
    .academy-content { text-align: center; }
    .academy-content h2 { font-size: 2.2rem !important; }
    .academy-content ul li { justify-content: center; }

    /* GLightbox Mobile Ultra Fit */
    .glightbox-container .gslide-image { 
        max-height: 70vh !important; 
        margin: auto !important;
    }
    .glightbox-container .gslide-image img { 
        max-width: 100% !important; 
        max-height: 70vh !important; 
        width: auto !important; 
        height: auto !important; 
        object-fit: contain !important; 
    }

}

@media (max-width: 480px) {
    header { height: 85px; }
    .logo img { height: 50px; }
    .logo span { font-size: 1.1rem; }
    .hero h1 { font-size: 2rem; }
    .contact-visual { height: 220px; }
    .contact-form-wrap { padding: 30px 20px; }
}

@media (min-width: 769px) {
    .contact-section { flex-direction: row !important; }
    .section-academy .container { flex-direction: row !important; }
    .slider-nav { display: none !important; }
    .slider-container { display: contents !important; }
}