/* =========================================
   VANDANA MAKEUP STUDIO — Premium Landing Page
   ========================================= */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    --lavender: #E8DFF0;
    --lavender-light: #F3EEF8;
    --lavender-soft: #F8F4FC;
    --lilac: #D4C4E0;
    --lilac-deep: #B9A4CC;
    --ivory: #FDFBF9;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --charcoal: #2D2A33;
    --charcoal-light: #4A4553;
    --text-muted: #7A7382;
    --border-subtle: rgba(185, 164, 204, 0.3);
    --border-soft: rgba(185, 164, 204, 0.15);
    --shadow-soft: 0 4px 30px rgba(180, 160, 200, 0.12);
    --shadow-card: 0 8px 40px rgba(180, 160, 200, 0.1);
    --shadow-hover: 0 12px 50px rgba(180, 160, 200, 0.18);
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-display: 'Bodoni Moda', 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border: 1px solid var(--charcoal);
}

.btn-primary:hover {
    background: var(--charcoal-light);
    border-color: var(--charcoal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 42, 51, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: var(--lavender-soft);
    border-color: var(--lilac);
    transform: translateY(-2px);
}

.btn-card {
    padding: 0.7rem 1.6rem;
    font-size: 0.65rem;
    background: var(--charcoal);
    color: var(--white);
    border: 1px solid var(--charcoal);
    width: 100%;
}

.btn-card:hover {
    background: var(--charcoal-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(45, 42, 51, 0.2);
}

.btn-large {
    padding: 1.2rem 2.8rem;
    font-size: 0.75rem;
}

/* ---------- SPARKLE DECORATIONS ---------- */
.sparkle {
    position: absolute;
    color: var(--lilac-deep);
    opacity: 0.5;
    pointer-events: none;
    animation: sparkleFloat 4s ease-in-out infinite;
    font-size: 1.2rem;
}

.sparkle-1 { top: 15%; left: 8%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 12%; animation-delay: 1s; }
.sparkle-3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.sparkle-4 { bottom: 15%; right: 8%; animation-delay: 0.5s; }

.sparkle-icon {
    color: var(--lilac-deep);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.sparkle-icon.small {
    font-size: 0.6rem;
    display: block;
    margin-top: 0.8rem;
}

.sparkle-deco {
    color: var(--lilac-deep);
    font-size: 1rem;
    opacity: 0.6;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-8px) rotate(15deg); opacity: 0.8; }
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 30px rgba(180, 160, 200, 0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
}

.logo {
    text-align: center;
    line-height: 1;
}

.logo-main {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--charcoal);
}

.logo-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lilac-deep);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.header-cta:hover {
    background: var(--lavender-soft);
    border-color: var(--lilac);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-book-btn {
    margin-top: 2.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--charcoal);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-book-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-light) 50%, var(--lavender-soft) 100%);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(212, 196, 224, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Hero Images — Editorial Collage */
.hero-images {
    position: relative;
    height: 600px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    left: 5%;
    width: 320px;
    height: 420px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

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

.img-frame-accent {
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--lilac-deep);
    pointer-events: none;
    opacity: 0.5;
}

.hero-img-secondary {
    position: absolute;
    top: 60px;
    right: 0;
    width: 240px;
    height: 320px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    z-index: 2;
}

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

.img-frame-thin {
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: 8px;
    left: 8px;
    border: 1px solid rgba(185, 164, 204, 0.4);
    pointer-events: none;
}

.hero-img-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 280px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    z-index: 3;
}

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

/* Hero Content */
.hero-content {
    padding-left: 2rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 1.8rem;
    line-height: 1.05;
}

.title-line-1 {
    display: block;
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.title-line-2 {
    display: block;
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.title-line-3 {
    display: block;
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.04em;
}

.title-line-3 em,
.title-line-1 em {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    color: var(--lilac-deep);
}

.hero-desc {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---------- CATEGORIES ---------- */
.categories {
    padding: 5rem 0;
    background: var(--white);
}

.categories-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
}

.category-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-img-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    margin: 0 auto 1.2rem;
    transition: var(--transition-smooth);
    position: relative;
    background: var(--lavender-soft);
}

.category-card:hover .category-img-wrap {
    border-color: var(--lilac-deep);
    box-shadow: 0 0 0 6px rgba(185, 164, 204, 0.15);
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--charcoal);
    line-height: 1.6;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.15;
    color: var(--charcoal);
}

.section-title em {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    color: var(--lilac-deep);
}

/* ---------- FEATURED SERVICES CAROUSEL ---------- */
.featured-services {
    padding: 6rem 0;
    background: var(--lavender-soft);
    position: relative;
}

.services-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0.5rem 2rem;
    scroll-snap-type: x mandatory;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 300px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
    scroll-snap-align: start;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--lilac);
}

.service-card-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.service-card-img img,
.service-card-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.service-card:hover .service-card-img img,
.service-card:hover .service-card-img svg {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.7));
}

.service-price {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-body h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.service-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Carousel Arrows */
.carousel-arrow {
    flex: 0 0 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
}

.carousel-arrow:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* ---------- PROMOTIONAL TICKER ---------- */
.promo-ticker {
    background: var(--charcoal);
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-item {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.8);
}

.ticker-dot {
    color: var(--lilac-deep);
    font-size: 0.6rem;
    opacity: 0.7;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- ABOUT SECTION ---------- */
.about {
    background: var(--lavender);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.about-title em {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    color: var(--lilac-deep);
}

.about-divider {
    width: 60px;
    height: 1px;
    background: var(--lilac-deep);
    margin-bottom: 2rem;
}

.about-text {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    margin-bottom: 1.2rem;
    max-width: 500px;
}

.about-image {
    position: relative;
}

.about-img-main {
    position: relative;
    width: 420px;
    height: 560px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-left: auto;
}

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

.about-img-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid rgba(185, 164, 204, 0.4);
    pointer-events: none;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    border: 1px solid var(--border-soft);
    z-index: 2;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--lilac-deep);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.4rem;
}

.about-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.about-wave-bottom svg {
    width: 100%;
    height: 60px;
}

/* ---------- SERVICES LIST ---------- */
.services-list-section {
    padding: 7rem 0;
    background: var(--white);
}

.services-grid {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition-smooth);
}

.service-item:first-child {
    border-top: 1px solid var(--border-soft);
}

.service-item:hover {
    padding-left: 1rem;
}

.service-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--lilac-deep);
    opacity: 0.6;
    min-width: 60px;
}

.service-info h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.service-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-explore {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--lilac-deep);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.service-explore:hover {
    color: var(--charcoal);
    gap: 0.8rem;
}

/* ---------- SERVICES SUBTITLE ---------- */
.services-subtitle {
    text-align: center;
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: -2rem auto 3rem;
    line-height: 1.8;
}

/* ---------- PLACEHOLDER SVG ---------- */
.placeholder-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.placeholder-svg-circle {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

/* ---------- CSS ART PLACEHOLDERS (copyright-free visuals) ---------- */
.art-face,
.art-face-small,
.art-scale,
.art-artist {
    position: relative;
    background:
        radial-gradient(circle at 50% 38%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 30%),
        linear-gradient(135deg, #E8DFF0 0%, #D4C4E0 55%, #B9A4CC 100%);
}

.art-face::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55%;
    height: 55%;
    transform: translate(-50%, -58%);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    box-shadow:
        inset 0 0 0 12px rgba(255,255,255,0.08),
        inset 0 0 0 26px rgba(255,255,255,0.10);
}

.art-face::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 18%;
    transform: translate(-50%, 20%);
    border-radius: 0 0 40% 40%;
    border-bottom: 2px solid rgba(255,255,255,0.5);
}

.art-face-small {
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 32%),
        linear-gradient(135deg, #F3EEF8 0%, #D4C4E0 100%);
}

.art-face-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -58%);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
}

.art-face-small::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32%;
    height: 20%;
    transform: translate(-50%, 15%);
    border-radius: 0 0 40% 40%;
    border-bottom: 2px solid rgba(255,255,255,0.45);
}

.art-brush {
    background: linear-gradient(135deg, #F8F4FC 0%, #E8DFF0 100%);
    position: relative;
}

.art-brush::before {
    content: '';
    position: absolute;
    top: 14%;
    left: 55%;
    width: 16%;
    height: 68%;
    border: 1.5px solid #B9A4CC;
    border-radius: 30px;
    opacity: 0.35;
}

.art-brush::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 55%;
    width: 16%;
    height: 20%;
    background: rgba(185,164,204,0.15);
    border-radius: 8px;
}

.art-label-top {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.7);
    z-index: 2;
}

.art-circle-bridal,
.art-circle-party,
.art-circle-engage,
.art-circle-editorial {
    width: 100%;
    height: 100%;
    position: relative;
}

.art-circle-bridal {
    background: linear-gradient(135deg, #E8DFF0, #D4C4E0);
}

.art-circle-bridal::before,
.art-circle-party::before,
.art-circle-engage::before {
    content: '';
    position: absolute;
    top: 42%;
    left: 50%;
    width: 42%;
    height: 45%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
}

.art-circle-party {
    background: linear-gradient(135deg, #F3EEF8, #E8DFF0);
}

.art-circle-engage {
    background: linear-gradient(135deg, #F8F4FC, #D4C4E0);
}

.art-circle-editorial {
    background: linear-gradient(135deg, #E8DFF0, #F3EEF8);
}

.art-circle-editorial::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 38%;
    height: 38%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: none;
    border: 1.5px solid rgba(185,164,204,0.5);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.art-makeup-1,
.art-makeup-2,
.art-makeup-3,
.art-makeup-4,
.art-makeup-5,
.art-home-service,
.art-product-1,
.art-product-2,
.art-product-3,
.art-product-4,
.art-product-5,
.art-product-6,
.art-home-detail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.art-makeup-1 {
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 28%),
        linear-gradient(135deg, #E8DFF0, #D4C4E0);
}

.art-makeup-1::before,
.art-makeup-2::before,
.art-makeup-3::before,
.art-makeup-4::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 40%;
    height: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
}

.art-makeup-2 {
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 30%),
        linear-gradient(160deg, #F3EEF8, #E8DFF0);
}

.art-makeup-3 {
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 30%),
        linear-gradient(135deg, #F8F4FC, #D4C4E0);
}

.art-makeup-4 {
    background:
        radial-gradient(circle at 50% 38%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 28%),
        linear-gradient(150deg, #E8DFF0, #F3EEF8);
}

.art-makeup-5 {
    background: linear-gradient(160deg, #F3EEF8, #F8F4FC);
}

.art-makeup-5::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    width: 15%;
    height: 42%;
    transform: translate(-50%, -45%);
    border: 1.5px solid #B9A4CC;
    border-radius: 2rem 2rem 1rem 1rem;
    opacity: 0.4;
}

.art-makeup-variant {
    filter: hue-rotate(8deg) saturate(0.9);
}

.art-home-service {
    background: linear-gradient(145deg, #E8DFF0, #F8F4FC);
}

.art-home-service::before {
    content: '';
    position: absolute;
    top: 42%;
    left: 50%;
    width: 42%;
    height: 38%;
    transform: translate(-50%, -50%);
    border: 1.5px solid #B9A4CC;
    border-radius: 4px;
    opacity: 0.4;
}

.art-home-service::after {
    content: '';
    position: absolute;
    top: 24%;
    left: 50%;
    width: 45%;
    height: 22%;
    transform: translateX(-50%);
    border-top: 1.5px solid #B9A4CC;
    border-left: 1.5px solid #B9A4CC;
    border-right: 1.5px solid #B9A4CC;
    border-radius: 50% 50% 0 0;
    opacity: 0.4;
}

.art-artist {
    background:
        radial-gradient(circle at 50% 38%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 30%),
        linear-gradient(160deg, #E8DFF0 0%, #D4C4E0 60%, #B9A4CC 100%);
}

.art-artist::before {
    content: '';
    position: absolute;
    top: 46%;
    left: 50%;
    width: 45%;
    height: 45%;
    transform: translate(-50%, -60%);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    box-shadow: inset 0 0 0 10px rgba(255,255,255,0.07);
}

.art-artist::after {
    content: '';
    position: absolute;
    top: 52%;
    left: 50%;
    width: 26%;
    height: 16%;
    transform: translate(-50%, 14%);
    border-radius: 0 0 40% 40%;
    border-bottom: 2px solid rgba(255,255,255,0.5);
}

.art-product-1,
.art-product-2,
.art-product-3,
.art-product-4,
.art-product-5,
.art-product-6 {
    background: linear-gradient(135deg, #F3EEF8, #E8DFF0);
}

.art-product-1::before,
.art-product-2::before,
.art-product-3::before,
.art-product-6::before {
    content: '';
    position: absolute;
    top: 42%;
    left: 50%;
    width: 22%;
    height: 48%;
    transform: translate(-50%, -50%);
    border: 1.5px solid #B9A4CC;
    border-radius: 6px 6px 14px 14px;
    opacity: 0.4;
}

.art-product-4::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 40%;
    height: 32%;
    transform: translate(-50%, -50%);
    border: 1.5px solid #B9A4CC;
    border-radius: 4px;
    opacity: 0.4;
}

.art-product-5::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 46%;
    height: 22%;
    transform: translate(-50%, -50%);
    border: 1.5px solid #B9A4CC;
    border-radius: 50%;
    opacity: 0.4;
}

.art-home-detail {
    background:
        radial-gradient(circle at 50% 32%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 28%),
        linear-gradient(150deg, #E8DFF0, #D4C4E0 70%, #B9A4CC);
    box-shadow: var(--shadow-card);
    max-width: 450px;
    min-height: 480px;
    margin: 0 auto;
}

.art-home-detail::before {
    content: '';
    position: absolute;
    top: 36%;
    left: 50%;
    width: 40%;
    height: 30%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px;
}

.art-home-detail::after {
    content: '';
    position: absolute;
    top: 16%;
    left: 50%;
    width: 46%;
    height: 20%;
    transform: translateX(-50%);
    border: 2px solid rgba(255,255,255,0.5);
    border-bottom: none;
    border-radius: 50% 50% 0 0;
}

/* ---------- PRODUCTS SECTION ---------- */
.products-section {
    padding: 7rem 0;
    background: var(--lavender-soft);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--lilac);
}

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-img svg {
    width: 100%;
    height: 100%;
}

.product-info {
    padding: 1.5rem;
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--lilac-deep);
    margin-bottom: 0.8rem;
}

.product-info h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.product-brand {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-new {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--lilac-deep);
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ---------- HOME SERVICES SECTION ---------- */
.home-services-section {
    padding: 7rem 0;
    background: var(--white);
}

.home-services-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.home-services-content .about-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.home-services-content .about-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.home-services-content .about-title em {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    color: var(--lilac-deep);
}

.home-services-content .about-divider {
    width: 60px;
    height: 1px;
    background: var(--lilac-deep);
    margin-bottom: 1.5rem;
}

.home-services-content .about-text {
    font-family: var(--font-elegant);
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
    max-width: 500px;
}

.home-services-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.home-services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--charcoal-light);
}

.home-services-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--lilac-deep);
    font-size: 0.7rem;
}

.home-services-visual {
    position: relative;
}

.home-services-visual svg {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-card);
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
    padding: 6rem 0;
    background: var(--lavender-soft);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--lavender-soft);
}

.portfolio-item img,
.portfolio-item svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.col-tall .portfolio-item:first-child { height: 380px; }
.col-tall .portfolio-item:last-child { height: 260px; }
.col-medium .portfolio-item:first-child { height: 320px; }
.col-medium .portfolio-item:last-child { height: 300px; }
.col-short .portfolio-item { height: 500px; }

.portfolio-item:hover img,
.portfolio-item:hover svg {
    transform: scale(1.06);
}

.portfolio-item:hover::before {
    transform: translate(-50%, -50%) scale(1.06);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(45, 42, 51, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
}

/* ---------- WHY US ---------- */
.why-us {
    padding: 7rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.why-item {
    padding: 2rem 1.5rem;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--lilac-deep);
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
    background: var(--lavender-soft);
    border-color: var(--lilac-deep);
    transform: translateY(-4px);
}

.why-item h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.why-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 7rem 0;
    background: var(--lavender-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--lilac);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--lilac);
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    font-family: var(--font-elegant);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--lilac-deep);
}

.testimonial-author strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--charcoal);
}

.testimonial-author span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-light) 50%, var(--lavender-soft) 100%);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sparkle-cta-1 { top: 10%; left: 5%; }
.sparkle-cta-2 { top: 20%; right: 8%; animation-delay: 1.5s; }
.sparkle-cta-3 { bottom: 20%; left: 10%; animation-delay: 2.5s; }
.sparkle-cta-4 { bottom: 10%; right: 5%; animation-delay: 0.8s; }

.cta-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
}

.cta-title em {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    color: var(--lilac-deep);
}

.cta-text {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-contact-item svg {
    color: var(--lilac-deep);
}

/* ---------- FOOTER ---------- */
.site-footer {
    position: relative;
    background: var(--white);
}

.footer-wave {
    position: relative;
    line-height: 0;
    margin-top: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-inner {
    background: #1a1a1a;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer .logo-main {
    color: var(--white);
    font-size: 1.3rem;
}

.logo-footer .logo-sub {
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin: 1.2rem 0 1.5rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--lilac-deep);
    border-color: var(--lilac-deep);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    padding: 0.4rem 0;
}

.footer-contact svg {
    color: var(--lilac-deep);
    opacity: 0.5;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem 6rem;
    }

    .hero-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-main { width: 260px; height: 340px; }
    .hero-img-secondary { width: 200px; height: 260px; }
    .hero-img-detail { width: 120px; height: 240px; }

    .hero-content {
        text-align: center;
        padding-left: 0;
    }

    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    .title-line-1 { font-size: 3.5rem; }
    .title-line-2, .title-line-3 { font-size: 3.2rem; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content { text-align: center; }
    .about-text { margin-left: auto; margin-right: auto; }
    .about-img-main { margin: 0 auto; width: 360px; height: 480px; }
    .about-divider { margin: 0 auto 2rem; }

    .categories-row { gap: 1.5rem; }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-services-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .home-services-content { text-align: center; }
    .home-services-content .about-text { margin: 0 auto 1rem; }
    .home-services-content .about-divider { margin: 0 auto 1.5rem; }
    .home-services-list { text-align: left; max-width: 400px; margin: 1.5rem auto 2rem; }
    .home-services-visual svg { max-width: 350px; }

    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-short { display: none; }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .main-nav { display: none; }

    .header-cta span { display: none; }
    .header-cta { padding: 0.6rem; }

    .header-inner { padding: 0.8rem 1.5rem; }
    .logo-main { font-size: 1.2rem; }
    .logo-sub { font-size: 0.5rem; }

    .hero { min-height: auto; padding-top: 4rem; }
    .hero-inner { padding: 2rem 1.5rem 5rem; }

    .hero-images {
        height: 400px;
        max-width: 340px;
    }

    .hero-img-main { width: 220px; height: 290px; left: 10%; }
    .hero-img-secondary { width: 170px; height: 220px; }
    .hero-img-detail { width: 100px; height: 200px; }

    .title-line-1 { font-size: 2.5rem; }
    .title-line-2, .title-line-3 { font-size: 2.2rem; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; }

    .categories {
        overflow-x: auto;
        padding: 3rem 0;
    }

    .categories-row {
        display: flex;
        padding: 0 1.5rem;
        gap: 1.2rem;
        min-width: max-content;
    }

    .category-img-wrap { width: 130px; height: 130px; }

    .section-title { font-size: 2rem; }

    .services-carousel-wrap { padding: 0 1.5rem; }

    .service-card { flex: 0 0 260px; }
    .service-card-img { height: 260px; }

    .carousel-arrow { display: none; }

    .about {
        padding: 5rem 0 3rem;
    }

    .about-inner { padding: 0 1.5rem; }

    .about-title { font-size: 2.5rem; }

    .about-img-main { width: 280px; height: 380px; }

    .about-experience-badge {
        bottom: -20px;
        left: 0;
        padding: 1rem 1.5rem;
    }

    .badge-number { font-size: 2rem; }

    .service-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .service-explore {
        grid-column: 2;
    }

    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .col-tall .portfolio-item:first-child { height: 250px; }
    .col-tall .portfolio-item:last-child { height: 180px; }
    .col-medium .portfolio-item:first-child { height: 220px; }
    .col-medium .portfolio-item:last-child { height: 200px; }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .home-services-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-services-content .about-title { font-size: 2.5rem; }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .cta-title { font-size: 2.2rem; }
    .cta-contact-info { flex-direction: column; align-items: center; gap: 1rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-tagline { margin: 1rem auto 1.5rem; }
    .footer-social { justify-content: center; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-images {
        height: 350px;
        max-width: 280px;
    }

    .hero-img-main { width: 180px; height: 240px; }
    .hero-img-secondary { width: 140px; height: 180px; }
    .hero-img-detail { width: 80px; height: 160px; }

    .title-line-1 { font-size: 2rem; }
    .title-line-2, .title-line-3 { font-size: 1.8rem; }

    .section-title { font-size: 1.7rem; }
    .about-title { font-size: 2rem; }
    .cta-title { font-size: 1.8rem; }

    .category-img-wrap { width: 100px; height: 100px; }
    .category-label { font-size: 0.6rem; }

    .products-grid { gap: 1rem; }
    .product-img { height: 180px; }
    .product-info { padding: 1.2rem; }

    .home-services-content .about-title { font-size: 2rem; }
}
