:root {
    --primary: #0A192F;
    --secondary: #112240;
    --gold: #D4AF37;
    --gold-hover: #F1C40F;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --wpp-green: #25D366;
    --wpp-hover: #128C7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes socialBouncePulse {
    0% { transform: translateY(0) scale(1); }
    20% { transform: translateY(-10px) scale(1.05); }
    40% { transform: translateY(0) scale(1); }
    100% { transform: translateY(0) scale(1); }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--wpp-green);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-btn i {
    font-size: 1.5rem;
}

.cta-btn:hover {
    background-color: var(--wpp-hover);
    transform: translateY(-3px) scale(1.05);
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    border-bottom: 5px solid var(--gold);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.urgency-text {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--gold);
}

.pain-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--white);
}

.pain-section h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    border-bottom: 5px solid var(--gold);
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.solution-section {
    padding: 80px 20px;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

.solution-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.solution-section p {
    max-width: 700px;
    margin: 0 auto 15px auto;
    font-size: 1.1rem;
}

.solution-section p:nth-of-type(3) {
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 10px;
}

.gold-icon {
    color: var(--gold);
    margin-right: 10px;
}

.before-after-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--white);
}

.before-after-section h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.ba-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ba-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 400px;
    max-width: 100%;
}

.ba-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ba-img {
    flex: 1;
    width: 100%;
    max-width: 50%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.ba-card h4 {
    color: var(--primary);
}

.about-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-photo {
    flex: 1;
    width: 100%;
    max-width: 400px; 
    height: auto; 
    border-radius: 20px;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: socialBouncePulse 2.5s infinite;
}

.insta-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
    animation-delay: 0s;
}

.tiktok-btn {
    background-color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation-delay: 0.2s;
}

.youtube-btn {
    background-color: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation-delay: 0.4s;
}

.social-btn:hover {
    filter: brightness(1.2);
}

.testimonials {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--white);
}

.testimonials h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.testimonial-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    font-style: italic;
    border-left: 5px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.location-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--secondary);
    color: var(--white);
    border-bottom: 5px solid var(--gold);
}

.location-section h2 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.location-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.map-container {
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.offer-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
}

.urgency-box {
    border: 3px dashed var(--gold);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: #FCFAEE;
}

.urgency-box h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.urgency-box p {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.attention-text {
    color: #D9534F !important;
}

footer {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .about-container { flex-direction: column; text-align: center; }
    .social-buttons { justify-content: center; }
    .ba-grid { flex-direction: column; align-items: center; }
}