@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

:root {
    --magenta: #D81B60;
    --gold: #FFC107;
    --dark: #0a0a0a;
    --white: #ffffff;
    --grey: #1c1c1c;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); overflow-x: hidden; }

.main-wrapper { padding: 0 40px; }

/* PILL NAV */
.pill-nav { position: fixed; top: 20px; width: 100%; display: flex; justify-content: center; z-index: 1000; left: 0; }
.nav-content { background: rgba(0,0,0,0.8); border: 1px solid #333; backdrop-filter: blur(15px); padding: 10px 40px; border-radius: 100px; display: flex; align-items: center; gap: 40px; }
.nav-content a { color: white; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: 0.3s; }
.nav-content a:hover { color: var(--magenta); }
.nav-logo { height: 35px; }

/* HERO POD */
.hero-pod { background: var(--white); color: var(--dark); border-radius: 60px; margin-top: 100px; padding: 80px; }
.pod-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge { background: #f0f0f0; padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 0.75rem; color: #555; }
.hero-pod h1 { font-size: 4rem; line-height: 1.1; margin: 25px 0; font-weight: 800; }
.magenta-text { color: var(--magenta); }
.hero-pod p { font-size: 1.1rem; color: #444; line-height: 1.6; }
.pod-btns { display: flex; gap: 20px; margin-top: 40px; }
.btn-black { background: var(--dark); color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; }
.btn-outline { border: 1px solid #ccc; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; color: var(--dark); }

.pod-image { position: relative; }
.pod-image img { width: 100%; border-radius: 40px; transform: rotate(1deg); transition: 0.5s; }
.pod-image img:hover { transform: rotate(0); }
.experience-tag { position: absolute; top: -20px; right: -20px; background: white; padding: 25px; border-radius: 25px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.stars { color: var(--gold); margin-bottom: 5px; }

/* STATS */
.stats-bar { display: flex; justify-content: space-around; background: var(--grey); border-radius: 40px; padding: 50px; margin: 50px 0; border: 1px solid #333; }
.stat-item h2 { font-size: 3rem; color: var(--gold); }
.stat-item p { color: #888; font-weight: 700; }

/* SERVICES */
.services-modern { padding: 100px 0; }
.magenta-pill { background: var(--magenta); color: white; padding: 0 15px; border-radius: 10px; }
.services-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; margin-top: 60px; }
.service-row { display: flex; align-items: center; justify-content: space-between; padding: 40px 0; border-bottom: 1px solid #333; cursor: pointer; transition: 0.3s; }
.service-row:hover { padding-left: 20px; color: var(--magenta); }
.s-num { font-size: 1.2rem; opacity: 0.3; margin-right: 30px; font-weight: 800; }
.service-row h3 { font-size: 1.8rem; flex: 1; }

.service-img-pod { position: relative; }
.service-img-pod img { width: 100%; border-radius: 40px; }
.expert-cta { position: absolute; bottom: 30px; right: 30px; background: var(--magenta); color: white; padding: 20px 40px; border-radius: 50px; font-weight: 800; text-decoration: none; }

/* CONTACT */
.contact-modern { padding-bottom: 100px; }
.contact-box { background: var(--grey); border-radius: 50px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid #333; }
.contact-form-side { padding: 80px; }
.contact-form-side h2 { font-size: 3rem; margin-bottom: 40px; }
.gold-text { color: var(--gold); }
.contact-form-side input { width: 100%; padding: 20px; margin-bottom: 20px; background: #000; border: 1px solid #444; color: white; border-radius: 15px; }
.btn-magenta { background: var(--magenta); color: white; border: none; padding: 20px 50px; border-radius: 50px; font-weight: 800; cursor: pointer; width: 100%; }

.contact-info-side { position: relative; }
.contact-info-side img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.info-overlay { position: absolute; bottom: 40px; left: 40px; background: var(--magenta); padding: 30px; border-radius: 20px; }

/* FOOTER */
.main-footer { padding: 100px 80px 40px; background: #000; border-radius: 80px 80px 0 0; text-align: center; }
.footer-upper h1 { font-size: 6rem; opacity: 0.1; text-transform: uppercase; margin-bottom: 60px; }
.footer-logo { height: 60px; margin-bottom: 30px; }
.social-links a { color: #888; text-decoration: none; margin: 0 20px; font-weight: 800; }
.social-links a:hover { color: var(--magenta); }
/* TESTIMONIALS MODERN STYLING */
.testimonials-modern {
    padding: 100px 0;
    background: var(--dark);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.badge-gold {
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 40px;
    position: relative;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: var(--magenta);
}

.quote-icon {
    font-size: 2rem;
    color: var(--magenta);
    margin-bottom: 20px;
    opacity: 0.5;
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #bbb;
    font-style: italic;
    margin-bottom: 30px;
    min-height: 100px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--magenta);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
        border-radius: 30px;
    }
}

/* MOBILE */
@media (max-width: 992px) {
    .main-wrapper { padding: 0 20px; }
    .pod-inner, .services-body, .contact-box { grid-template-columns: 1fr; }
    .hero-pod { padding: 40px; margin-top: 80px; }
    .hero-pod h1 { font-size: 2.5rem; }
    .footer-upper h1 { font-size: 3rem; }
}