@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;
}

* {
    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 {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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


section {
    padding: 120px 10%;
    background: transparent !important;
    /* Force transparency to see background */
}


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: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 12px 35px;
    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: 95%;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 50px rgba(255, 77, 109, 0.15);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--deep-pink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.logo i {
    font-size: 1.8rem;
    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: 20px;
    margin: 0;
    padding: 0;
}

#main-header .desktop-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    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);
}

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

/* Header Buttons & Mobile Toggle */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

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

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

.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;
}

.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%;
    }
}

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

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

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

.thumb-1 {
    top: 10%;
    right: -80px;
    transform: rotate(10deg);
}

.thumb-2 {
    top: 35%;
    right: -120px;
    transform: rotate(-5deg);
}

.thumb-3 {
    bottom: 25%;
    right: -90px;
    transform: rotate(15deg);
}

.thumb-4 {
    bottom: 5%;
    right: -50px;
    transform: rotate(-10deg);
}

.thumb-5 {
    bottom: -15%;
    right: 20px;
    transform: rotate(8deg);
    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 {
    padding: 120px 10%;
}

.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);
}

/* Masonry Gallery Upgrade */
.gallery-wrap {
    column-count: 4;
    column-gap: 20px;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.gallery-card img {
    width: 100%;
    display: block;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 77, 109, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover .gallery-info {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* 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: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.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);
}

/* --- Advanced WOW Additions --- */

/* 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 */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.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;
}

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

.bubble.phone {
    background: #2ecc71;
    animation: pulse-green 2s infinite;
}

.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);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.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;
}

/* 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: 40px;
    }
}

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

@media (max-width: 768px) {
    header {
        width: 94%;
        padding: 10px 15px;
        top: 10px;
        justify-content: space-between;
        height: 75px;
    }

    .desktop-nav {
        display: none;
    }

    .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;
        width: auto;
    }

    .logo span {
        font-size: 1.3rem;
        white-space: nowrap;
        font-weight: 700;
        color: var(--deep-pink);
    }

    /* Increased to 1.3rem */

    .hero {
        padding-top: 120px;
        padding-bottom: 0px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        display: flex;
        flex-direction: column;
        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%;
    }

    .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;
    }

    /* Clean Artistic Visual for Mobile */
    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        transform: scale(1);
        margin-bottom: 20px;
    }

    .hero-main-frame {
        width: 240px;
        height: 320px;
        margin: 0 auto;
        position: relative;
        border-radius: 30px;
        background: white;
        padding: 8px;
        box-shadow: var(--shadow-deep);
        transform: rotate(0deg);
        /* Straighten for cleaner look */
    }

    .main-portrait {
        border-radius: 25px;
        object-fit: contain;
        background: #fef1f3;
    }

    .thumb {
        width: 80px;
        height: 100px;
        padding: 4px 4px 15px 4px;
        background: white;
        box-shadow: var(--shadow-soft);
        z-index: 5;
    }

    .thumb-1 {
        top: -20px;
        left: -20px;
        transform: rotate(-10deg);
    }

    .thumb-2 {
        top: 20px;
        right: -30px;
        transform: rotate(10deg);
    }

    .thumb-3 {
        bottom: 20px;
        left: -30px;
        transform: rotate(-5deg);
    }

    .thumb-4 {
        bottom: -20px;
        right: -10px;
        transform: rotate(12deg);
    }

    .thumb-5 {
        bottom: -35px;
        left: 20%;
        transform: rotate(-10deg);
        z-index: 6;
    }

    /* Hide the Note on Mobile as requested */
    .hero-quote-bubble {
        display: none !important;
    }

    .floating-heart {
        display: none;
    }

    /* Also hide decorative heart to save space */

    @keyframes float1 {

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

        50% {
            transform: translate(-5px, -10px) rotate(-18deg);
        }
    }

    @keyframes float2 {

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

        50% {
            transform: translate(5px, -8px) rotate(15deg);
        }
    }

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

    .section-title h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    /* About & Contact Section Optimization */
    .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%;
    }

    /* Stats Grid Optimization */
    .contact-form-wrap div[style*="display: flex; gap: 30px;"] {
        flex-direction: column;
        gap: 25px !important;
        align-items: center;
        text-align: center;
    }

    .contact-form-wrap h2 {
        font-size: 2.2rem !important;
        text-align: center;
    }

    .contact-form-wrap p {
        text-align: center;
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-title h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .gallery-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    header {
        height: 85px;
    }

    .logo img {
        height: 50px;
    }

    .logo span {
        font-size: 1.1rem;
    }

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

    .hero-visual {
        transform: scale(1);
    }

    .contact-visual {
        height: 220px;
    }

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