/* ==========================================================================
   MOM'S MOON - PREMIUM STYLING SYSTEM
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
    /* Color Palette */
    --purple: #6B21A8;
    --purple-light: #8B5CF6;
    --deep-purple: #4C1D95;
    --gold: #D4AF37;
    --gold-hover: #B5902B;
    --pink: #FFF5F7;
    --pink-dark: #FCE7EB;
    --white: #FFFFFF;
    --dark-text: #2D2D2D;
    --light-text: #6B7280;
    --error-color: #EF4444;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows */
    --shadow-header: 0 4px 30px rgba(107, 33, 168, 0.03);
    --shadow-soft: 0 10px 30px rgba(107, 33, 168, 0.05);
    --shadow-medium: 0 20px 40px rgba(107, 33, 168, 0.08);
    --shadow-heavy: 0 30px 60px rgba(76, 29, 149, 0.12);
    --shadow-btn: 0 8px 20px rgba(107, 33, 168, 0.15);
    --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.25);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Layout Utility --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-purple);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--purple);
    transform: translateY(-3px);
}

.btn-call {
    background-color: var(--purple);
    color: var(--white);
    padding: 12px 24px;
    box-shadow: var(--shadow-btn);
}

.btn-call:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-call svg {
    width: 18px;
    height: 18px;
}

/* --- Common Section Elements --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-tag.text-left {
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.section-title.text-left {
    text-align: left;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

.gold-divider.text-left {
    margin: 0 0 24px 0;
}


/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-header);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 52px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .brand-logo {
    height: 44px;
}

/* Nav Menu */
.nav-menu {
    transition: var(--transition-smooth);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--dark-text);
    position: relative;
    padding: 8px 0;
}

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

/* Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--deep-purple);
    border-radius: 4px;
    transition: var(--transition-smooth);
}


/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
    padding: 0;
    margin-top: 92px;
    width: 100%;
    overflow: hidden;
    background-color: var(--pink);
}

.hero-banner-container {
    width: 100%;
    line-height: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-section {
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(107, 33, 168, 0.06);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

/* Image Container */
.cat-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--pink);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

/* Category Name */
.cat-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple);
    padding: 20px 16px 22px;
    margin: 0;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

/* Hover States */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.25);
}

.category-card:hover .cat-img {
    transform: scale(1.07);
}

.category-card:hover .cat-name {
    color: var(--gold);
}





/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
    background-color: var(--pink);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 35px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 4px 10px rgba(107, 33, 168, 0.04);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
}

.feature-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--deep-purple);
    font-size: 0.98rem;
}

/* About Media Video Card */
.about-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 16 / 10;
    background-color: var(--deep-purple);
}

.video-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.brand-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 29, 149, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.video-card.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Fade out overlay on hover when playing */
.video-card.playing:hover .video-overlay {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(76, 29, 149, 0.2);
}

.btn-play {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    margin-bottom: 16px;
    position: relative;
}

.btn-play::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: videoPulse 2s infinite;
}

.btn-play:hover {
    transform: scale(1.1);
    background-color: var(--gold);
    color: var(--white);
}

.icon-play {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.icon-pause {
    width: 24px;
    height: 24px;
}

.icon-pause.hidden {
    display: none;
}

.video-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}


/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
    background-color: var(--white);
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonial-slider {
    position: relative;
    height: auto;
    display: flex;
    overflow: hidden;
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background-color: var(--pink);
    border-radius: 28px;
    padding: 56px 48px;
    border: 1px solid var(--pink-dark);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 48px;
    color: rgba(107, 33, 168, 0.08);
}

.quote-icon svg {
    width: 64px;
    height: 64px;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--dark-text);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 28px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.text-avatar-pink {
    background: linear-gradient(135deg, var(--purple-light), #EC4899);
}

.text-avatar-purple {
    background: linear-gradient(135deg, var(--purple), var(--deep-purple));
}

.text-avatar-gold {
    background: linear-gradient(135deg, var(--gold), #F59E0B);
}

.user-info h4 {
    font-size: 1.05rem;
    color: var(--deep-purple);
    font-weight: 700;
}

.user-role {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    box-shadow: var(--shadow-soft);
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn svg {
    width: 22px;
    height: 22px;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--pink-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 24px;
    background-color: var(--gold);
    border-radius: 10px;
}


/* ==========================================================================
   CONTACT US SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--pink);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info-subtitle {
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 52px;
    height: 52px;
    background-color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    border: 1px solid rgba(107, 33, 168, 0.02);
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--deep-purple);
}

.info-text p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-text a:hover {
    color: var(--purple);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--deep-purple);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background-color: var(--pink);
    border: 1px solid var(--pink-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-text);
    transition: var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9CA3AF;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background-color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234C1D95' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px;
}

.contact-form textarea {
    resize: none;
}

/* Error validation states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
    background-color: rgba(239, 68, 68, 0.02);
}

.error-msg {
    position: absolute;
    bottom: -18px;
    left: 2px;
    font-size: 0.75rem;
    color: var(--error-color);
    display: none;
}

.form-group.error .error-msg {
    display: block;
}

.btn-submit {
    width: 100%;
    background-color: var(--purple);
    color: var(--white);
    box-shadow: var(--shadow-btn);
    margin-top: 10px;
    padding: 16px;
}

.btn-submit:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.btn-submit:hover svg {
    transform: translate(3px, -3px);
}


/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--deep-purple);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold);
    border-radius: 1px;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 90px;
    width: auto;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Quick links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* Contact info in footer */
.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-info li {
    display: flex;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-contact-info svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info a:hover {
    color: var(--gold);
}

/* Bottom Footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.design-credit {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--gold);
}


/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: videoPulse 2.2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    background-color: #20BA5A;
}

.float-whatsapp svg {
    width: 28px;
    height: 28px;
}

/* Tooltip on hover */
.float-whatsapp .tooltip {
    position: absolute;
    right: 64px;
    background-color: var(--deep-purple);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.float-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.float-call {
    background-color: var(--purple);
    display: none; /* Desktop hidden, only tablet/mobile */
}

.float-call:hover {
    transform: scale(1.1) translateY(-2px);
    background-color: var(--gold);
}

.float-call svg {
    width: 22px;
    height: 22px;
}




/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    border-left: 5px solid var(--gold);
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    padding: 20px 24px;
    z-index: 10000;
    max-width: 380px;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--pink);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast-text h4 {
    font-size: 1rem;
    color: var(--deep-purple);
    margin-bottom: 2px;
}

.toast-text p {
    font-size: 0.85rem;
    color: var(--light-text);
}


/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL
   ========================================================================== */

/* Keyframe Animations */
@keyframes zoomBackground {
    0% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes videoPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Intersection Observer Reveal Classes */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Stagger delay classes */
.reveal-up:nth-child(2) { transition-delay: 0.15s; }
.reveal-up:nth-child(3) { transition-delay: 0.3s; }
.reveal-up:nth-child(4) { transition-delay: 0.45s; }


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablet / Large Devices (Under 1024px) --- */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    

    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }
    
    .footer-col-brand {
        grid-column: span 2;
    }
}

/* --- Mobile / Tablet Devices (Under 768px) --- */
@media (max-width: 768px) {
    /* Header & Mobile Navigation */
    .header {
        padding: 16px 0;
    }
    
    .brand-logo {
        height: 66px;
    }
    
    .header.scrolled .brand-logo {
        height: 38px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(76, 29, 149, 0.1);
        padding: 100px 40px 40px;
        z-index: 1000;
        transition: var(--transition-smooth);
        display: block;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .btn-call {
        display: none; /* Hide top bar call button, rely on floating call */
    }
    
    .float-call {
        display: flex; /* Show floating call button on mobile */
    }
    
    /* Hamburger Active Transformations */
    .mobile-toggle.active .bar-1 {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-toggle.active .bar-2 {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar-3 {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    /* Hero Banner */
    .hero-section {
        margin-top: 74px;
    }
    
    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* About Features */
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Testimonial slider */
    .testimonial-slider-container {
        padding: 0;
    }
    
    .testimonial-card {
        padding: 40px 24px;
    }
    
    .quote-icon {
        top: 24px;
        right: 24px;
    }
    
    .quote-icon svg {
        width: 44px;
        height: 44px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    .slider-btn {
        display: none; /* Hide arrows on mobile, support swipe/dot clicking */
    }
    
    /* Contact Section */
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    /* Floating Action Buttons Adjustments */
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
    }
    
    .float-whatsapp svg {
        width: 24px;
        height: 24px;
    }
    
    .float-call svg {
        width: 20px;
        height: 20px;
    }
    

}
