:root {
    --brand-pink: #ff1e56;
    --brand-dark: #0f172a;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body { margin: 0; font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-main); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn-solid { background: var(--brand-pink); color: #fff; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; box-shadow: 0 10px 20px rgba(255,30,86,0.2); }
.btn-solid:hover { background: #e01548; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(255,30,86,0.3); }
.btn-outline { border: 2px solid var(--brand-dark); color: var(--brand-dark); padding: 13px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; margin-left: 10px; }
.btn-outline:hover { border-color: var(--brand-pink); color: var(--brand-pink); background: rgba(255,30,86,0.05); }

/* Hero Section with graphic-bg.png Overlay */
.hero-light { 
    padding: 100px 0; 
    /* White transparent gradient over graphic-bg.png */
    background: linear-gradient(rgba(255,255,255,0.9), rgba(248,250,252,1)), url('../images/graphic-bg.png') center/cover no-repeat; 
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.premium-badge { background: rgba(255,30,86,0.1); color: var(--brand-pink); padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.hero-text h1 { font-family: var(--font-heading); color: var(--brand-dark); font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; margin: 20px 0; font-weight: 900;}
.pink-gradient { background: linear-gradient(90deg, #ff1e56, #ff758c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; }
.floating-img { width: 100%; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }

@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } }

/* Stats Bar */
.stats-bar { background: var(--card-bg); padding: 40px 0; border-bottom: 1px solid var(--border-color); border-top: 1px solid var(--border-color); }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat h2 { font-size: 2.8rem; color: var(--brand-dark); margin: 0; font-family: var(--font-heading); font-weight: 800; }
.stat p { color: var(--brand-pink); margin: 5px 0 0; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }

/* Impact Section */
.impact-section { padding: 100px 0; background: var(--bg-light); }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.rounded-img { width: 100%; border-radius: 24px; box-shadow: 0 20px 50px rgba(15,23,42,0.1); }
.impact-text h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; color: var(--brand-dark); font-weight: 800; }
.pink-text { color: var(--brand-pink); }
.impact-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 15px; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; font-weight: 500;}
.check-list i { color: var(--brand-pink); font-size: 1.2rem; }

/* Expertise Grid */
.expertise-section { padding: 80px 0; background: #fff; }
.service-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.v2-card { padding: 40px; background: #fff; border: 1px solid var(--border-color); border-radius: 20px; transition: 0.3s; text-align: center;}
.v2-card:hover { border-color: var(--brand-pink); transform: translateY(-10px); box-shadow: 0 15px 35px rgba(255,30,86,0.1); }
.v2-card i { font-size: 2.5rem; color: var(--brand-pink); margin-bottom: 20px; }
.v2-card h3 { color: var(--brand-dark); font-size: 1.2rem; margin-bottom: 10px; font-weight: 700;}
.v2-card p { color: var(--text-muted); font-size: 0.9rem;}

/* PORTFOLIO SLIDER (Infinite Marquee) */
.portfolio-marquee-section { padding: 80px 0; background: var(--bg-light); overflow: hidden; }
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 20px 0; }
.marquee-container::before, .marquee-container::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none;}
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--bg-light), transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--bg-light), transparent); }

.marquee-track { display: inline-block; animation: scrollMarquee 45s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track img { height: 280px; width: 380px; object-fit: cover; border-radius: 16px; margin: 0 15px; display: inline-block; box-shadow: 0 10px 25px rgba(0,0,0,0.08); transition: 0.3s; cursor: pointer; }
.marquee-track img:hover { transform: scale(1.03); box-shadow: 0 15px 35px rgba(255,30,86,0.15); }

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

/* Pricing Grid */
.pricing-section { padding: 100px 0; background: #fff; }
.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; color: var(--brand-dark); font-weight: 800;}
.section-heading p { color: var(--text-muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.price-card { background: var(--card-bg); padding: 40px; border-radius: 24px; border: 1px solid var(--border-color); position: relative; transition: 0.3s; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.price-card:hover { border-color: var(--brand-pink); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(255,30,86,0.1); }
.price-card.popular { border: 2px solid var(--brand-pink); transform: scale(1.05); box-shadow: 0 20px 50px rgba(255,30,86,0.1); }
.price-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand-pink); color: #fff; padding: 6px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

.price-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--brand-dark); font-weight: 800; }
.pkg-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; min-height: 40px; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 30px; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pkg-features { list-style: none; padding: 0; margin-bottom: 30px; flex-grow: 1; }
.pkg-features li { padding: 12px 0; border-bottom: 1px solid var(--border-color); color: var(--text-main); font-size: 0.95rem; font-weight: 500; }

.btn-buy { width: 100%; padding: 15px; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: 0.3s; background: var(--bg-light); border: 1px solid var(--border-color); color: var(--brand-dark); }
.btn-buy:hover { background: #e2e8f0; }
.btn-buy.solid { background: var(--brand-pink); border: none; color: white; }
.btn-buy.solid:hover { background: #e01548; }

/* Payment Modal (Glassmorphism Light) */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.6); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 9999; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box { background: var(--card-bg); width: 90%; max-width: 450px; border-radius: 24px; padding: 40px; position: relative; transform: translateY(20px); transition: 0.3s; box-shadow: 0 25px 50px rgba(0,0,0,0.2); border: 1px solid var(--border-color); }
.modal-overlay.active .modal-box { transform: translateY(0); }

.close-modal { position: absolute; top: 20px; right: 20px; background: #f1f5f9; border: none; width: 35px; height: 35px; border-radius: 50%; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center;}
.close-modal:hover { color: white; background: var(--brand-pink); }

.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h3 { margin: 0 0 5px; color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.modal-header p { margin: 0 0 10px; font-size: 1.2rem; font-weight: 700; color: var(--brand-dark); }
.modal-header h2 { margin: 0; color: var(--brand-pink); font-size: 2.5rem; font-family: var(--font-heading); font-weight: 800;}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; color: var(--text-main); font-size: 0.9rem; font-weight: 600;}
.input-group input { width: 100%; padding: 15px; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: 12px; color: var(--brand-dark); font-family: var(--font-body); font-weight: 500; outline: none; transition: 0.3s; box-sizing: border-box; }
.input-group input:focus { border-color: var(--brand-pink); background: white; box-shadow: 0 0 0 3px rgba(255,30,86,0.1); }

.btn-pay-now { width: 100%; background: #25D366; color: #fff; padding: 16px; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 10px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);}
.btn-pay-now:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .hero-grid, .impact-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; display: flex; }
    .check-list li { justify-content: center; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-10px); }
    .marquee-track img { width: 300px; height: 220px; }
    .service-grid-v2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .service-grid-v2 { grid-template-columns: 1fr; }
    .stats-flex { flex-direction: column; gap: 30px; }
    .hero-light { padding: 60px 0; }
}