/* --- Modern Brand Color Palette --- */
:root {
    --bg-blush: #fff0f7;
    --accent-pink: #ec278f;
    --accent-pink-hover: #c71874;
    --accent-light: #fce6f2;
    --text-dark: #1e1b4b;
    --text-muted: #64748b;
    --white: #ffffff;
    --section-dark: #2a114b;
    --footer-teal: #2a114b;
    --footer-dark: #17072e;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Hide default cursor on desktop for custom cursor */
@media (min-width: 1025px) {
    body { cursor: none; }
    a, button, input, select, textarea { cursor: none !important; }
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-blush);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .stylish-text { font-family: 'DM Serif Display', serif; font-weight: 400; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }

/* --- Custom Cursor --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent-pink); }
.cursor-outline {
    width: 40px; height: 40px;
    border: 2px solid rgba(225, 29, 72, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-outline.hover-active {
    width: 60px; height: 60px;
    background-color: rgba(225, 29, 72, 0.1);
    border-color: transparent;
}

/* --- Header --- */
.main-header {
    background: rgba(255, 245, 246, 0.85);
    backdrop-filter: blur(12px);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(225, 29, 72, 0.1);
    padding: 15px 0; transition: var(--transition);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--text-dark); text-decoration: none; font-family: 'Outfit', sans-serif;}
.logo i { color: var(--accent-pink); }

/* Standard Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600; font-family: 'Outfit', sans-serif;
    text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary { background: var(--accent-pink); color: var(--white); }
.btn-primary:hover { background: var(--accent-pink-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3); }
.btn-outline { background: transparent; color: var(--accent-pink); border: 2px solid var(--accent-pink); }
.btn-outline:hover { background: var(--accent-light); }

/* --- Global Layouts --- */
.section-padding { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-center { text-align: center; }

/* --- FIXED HEADINGS --- */
.heading-group { margin-bottom: 50px; }
.section-tag { 
    color: var(--accent-pink); font-size: 1rem; font-weight: 700; 
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; 
    display: inline-flex; align-items: center; gap: 12px;
}
.section-tag::before, .text-center .section-tag::after {
    content: ''; display: inline-block; width: 40px; height: 2px; background-color: var(--accent-pink);
}
.section-title { font-size: 3.5rem; color: var(--text-dark); margin-bottom: 20px; line-height: 1.1; }
.section-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 650px; line-height: 1.6; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Optimized Fade Animations --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.fade-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.05); }
    100% { transform: translate(-5%, 5%) scale(0.95); }
}

/* --- Hero Section --- */
.hero { position: relative; padding: 180px 0 80px; overflow: hidden; perspective: 1000px; }

/* Background Blobs (Optimized for performance) */
.hero-blob-1, .hero-blob-2 { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; animation: floatBlob 10s ease-in-out infinite alternate; will-change: transform; }
.hero-blob-1 { top: -20%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(236, 39, 143, 0.2) 0%, rgba(236, 39, 143, 0) 70%); }
.hero-blob-2 { bottom: -30%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0) 70%); animation-delay: -5s; animation-duration: 12s; }

.hero-title-main { font-size: 5rem; line-height: 1; margin-bottom: 20px; color: var(--text-dark); }
.hero-text { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 450px; }
.stats-row { display: flex; gap: 40px; margin-top: 40px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 30px; }
.stat h4 { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--text-dark); line-height: 1; margin-bottom: 5px; }
.stat p { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* --- Form Card (3D Tilt) --- */
.form-card {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5); overflow: hidden;
    transform-style: preserve-3d; transition: transform 0.1s ease-out;
}
.form-header { background: var(--accent-pink); padding: 25px; color: var(--white); text-align: center; transform: translateZ(20px); }
.form-header h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; }
.form-body { padding: 30px; transform: translateZ(10px); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-control {
    width: 100%; padding: 12px 16px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Outfit', sans-serif; font-size: 0.95rem; background: #f8fafc; transition: all 0.3s;
}
.form-control:focus { outline: none; border-color: var(--accent-pink); background: var(--white); box-shadow: 0 0 0 3px var(--accent-light); transform: scale(1.02); }

/* --- New Form Styles --- */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.input-style {
    width: 100%; padding: 12px 16px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Outfit', sans-serif; font-size: 0.95rem; background: #f8fafc; transition: all 0.3s;
}
.input-style:focus { outline: none; border-color: var(--accent-pink); background: var(--white); box-shadow: 0 0 0 3px var(--accent-light); transform: scale(1.02); }
textarea.input-style { resize: vertical; min-height: 100px; }
.btn-accent {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600; font-family: 'Outfit', sans-serif;
    text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
    background: var(--accent-pink); color: var(--white); margin-top: 10px;
}
.btn-accent:hover { background: var(--accent-pink-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3); }

/* --- Modal --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--white); border-radius: 24px; padding: 40px; text-align: center;
    max-width: 400px; width: 90%; transform: translateY(30px); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute; top: 15px; right: 15px; width: 30px; height: 30px;
    background: var(--bg-blush); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); cursor: pointer; transition: all 0.2s;
}
.modal-close:hover { background: var(--accent-pink); color: var(--white); }
.modal-icon {
    width: 70px; height: 70px; background: var(--accent-light); color: var(--accent-pink);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px;
    margin: 0 auto 20px; transition: all 0.3s ease;
}
.modal-icon.win { background: #10b981; color: var(--white); box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
.modal-icon.lose { background: #f1f5f9; color: #64748b; }
.modal-content h3 { font-family: 'DM Serif Display', serif; font-size: 2rem; margin-bottom: 10px; color: var(--text-dark); }
.modal-content p { color: var(--text-muted); margin-bottom: 25px; }

/* --- Infinite Marquee --- */
.marquee-wrapper {
    background: var(--text-dark); color: var(--white); padding: 20px 0;
    overflow: hidden; display: flex; align-items: center; white-space: nowrap;
    transform: rotate(-2deg) scale(1.05); margin-top: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.marquee-content { display: flex; animation: marquee 20s linear infinite; }
.marquee-item { font-family: 'DM Serif Display', serif; font-size: 2rem; padding: 0 40px; display: flex; align-items: center; gap: 40px; }
.marquee-item i { font-size: 1rem; color: var(--accent-pink); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- About Section --- */
.about-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.about-image:hover img { transform: scale(1.05); }

/* --- Parallax Promo Banner --- */
.parallax-promo {
    background-image: linear-gradient(rgba(42, 17, 75, 0.85), rgba(42, 17, 75, 0.85)), url('https://images.unsplash.com/photo-1555252333-9f8e92e65df9?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed; background-position: center; background-size: cover;
    padding: 100px 0; color: var(--white); margin: 60px 0; position: relative; overflow: hidden;
}
.parallax-content { position: relative; z-index: 2; }
.parallax-promo h2 { color: var(--accent-pink); font-size: 4.5rem; margin-bottom: 15px; }

/* --- Values Grid (3D Hover Cards) --- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; perspective: 1000px; }
.value-card {
    background: var(--white); border-radius: 20px; padding: 30px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transform-style: preserve-3d; transition: transform 0.1s;
}
.value-icon {
    width: 80px; height: 80px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    border-radius: 20px; font-size: 32px; color: var(--white); transform: translateZ(30px);
}
.val-1 .value-icon { background: #f59e0b; }
.val-2 .value-icon { background: #3b82f6; }
.val-3 .value-icon { background: #10b981; }
.val-4 .value-icon { background: var(--accent-pink); }
.value-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); transform: translateZ(20px); }
.value-card p { font-size: 0.9rem; color: var(--text-muted); transform: translateZ(10px); }

/* --- Product Images Section --- */
.products-section { background: var(--white); padding: 100px 0; border-radius: 40px; margin: 0 20px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; perspective: 1000px;}
.product-card { transition: transform 0.1s; transform-style: preserve-3d; }
.product-img-box {
    width: 100%; height: 280px; border-radius: 20px; overflow: hidden; margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06); transform: translateZ(20px);
}
.product-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-box img { transform: scale(1.1); }
.product-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); transform: translateZ(10px); }
.product-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; }

/* --- Testimonials (Carousel/Ribbon Update) --- */
.testi-sec { padding: 100px 0; overflow-x: hidden; background: var(--bg-blush); }
.trib-wrap { overflow: hidden; padding: 4px 0 4px 20px; }
@media(min-width:768px){ .trib-wrap { padding-left: 32px; } }
.trib { display: flex; gap: 14px; animation: tscroll 30s linear infinite; width: max-content; }
@media(min-width:768px){ .trib { gap: 18px; } }
.trib:hover { animation-play-state: paused; }
@keyframes tscroll { to { transform: translateX(-50%); } }

.tc { 
    width: 272px; flex-shrink: 0; background: var(--white); 
    border: 1px solid rgba(0,0,0,0.05); border-radius: 16px; padding: 20px; 
    transition: box-shadow .3s, transform .3s; box-shadow: 0 2px 10px rgba(0,0,0,0.03); 
}
@media(min-width:480px){ .tc { width: 300px; } }
@media(min-width:768px){ .tc { width: 320px; padding: 24px; } }
.tc:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }

.tc-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.tc-stars i { color: #f59e0b; font-size: 0.8rem; }
.tc-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.tc-auth { display: flex; align-items: center; gap: 10px; }
.tc-av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent-pink); flex-shrink: 0; }
.tc-nm { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); line-height: 1.2; }
.tc-city { font-size: 0.8rem; color: var(--text-muted); }

/* --- Footer --- */
.main-footer { background: var(--footer-teal); color: var(--white); padding: 80px 0 20px; margin-top: 60px; position: relative; overflow: hidden;}
.footer-bg-text { position: absolute; font-family: 'DM Serif Display'; font-size: 15vw; opacity: 0.03; top: 0; left: -5%; white-space: nowrap; pointer-events: none;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 50px; position: relative; z-index: 1;}
.footer-brand p { color: rgba(255,255,255,0.8); margin-top: 15px; font-size: 0.95rem; max-width: 400px; }
.main-footer h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; margin-bottom: 20px; color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: transform 0.3s;}
.footer-links li:hover { transform: translateX(5px); color: var(--white);}
.footer-links i { margin-top: 4px; color: #5eead4; }
.footer-bottom { background: var(--footer-dark); padding: 20px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1;}

/* Responsive */
@media (max-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hero { text-align: center; }
    .hero-text { margin: 0 auto 40px; }
    .stats-row { justify-content: center; }
    .values-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .tilt-card { transform: none !important; }
}
@media (max-width: 768px) {
    .hero-title-main { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .values-grid, .products-grid { grid-template-columns: 1fr; }
    .parallax-promo { text-align: center; }
    .parallax-promo h2 { font-size: 3rem; }
    .products-section { padding: 60px 20px; border-radius: 20px; margin: 0; }
}
