/* GLOBAL SETTINGS */
:root {
  --gradient: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
  --white: #ffffff;
  --black: #111111;
  --gray-light: #f4f4f4;
  --gray-border: #e0e0e0;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'League Spartan', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.3;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* HEADER */
.header {
    background: var(--gradient);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 50px; width: auto; }
.nav-links a { text-decoration: none; color: var(--black); font-weight: 700; margin-left: 25px; text-transform: uppercase; font-size: 0.9rem; }
.nav-cta { background: var(--black); color: white !important; padding: 10px 20px; border-radius: 5px; }

/* HERO SECTION */
.hero {
    background: var(--gradient);
    padding: 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 900px;
    box-shadow: var(--shadow);
}

.heroTitle { font-size: 4.5rem; font-weight: 800; line-height: 1; margin-bottom: 25px; letter-spacing: -2px; }
.white-text { color: var(--white); text-shadow: 2px 2px 4px rgba(0,0,0,0.1); transition: opacity 0.5s ease; }
.heroSubtitle { font-size: 1.6rem; margin-bottom: 40px; font-weight: 500; max-width: 700px; color: var(--black); }

/* BUTTONS */
.ctaButtons { display: flex; gap: 20px; }
.primaryCta { background: var(--black); color: white; padding: 22px 40px; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: transform 0.2s; }
.secondaryCta { border: 3px solid var(--black); color: var(--black); padding: 19px 40px; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: 1.1rem; }
.primaryCta:hover { transform: translateY(-3px); }

/* WHATSAPP ACTION CARD */
.wa-action-card {
    margin-top: 50px;
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 550px;
    box-shadow: var(--shadow);
}

.wa-content { display: flex; align-items: center; gap: 15px; }
.wa-text { line-height: 1.2; }
.wa-text strong { display: block; font-size: 1.1rem; }
.wa-text span { font-size: 0.9rem; color: #666; }

.wa-status-dot {
    height: 12px;
    width: 12px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
    animation: pulse 2s infinite;
}

.wa-link-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* URGENCY BAR */
.urgency-bar { background: var(--black); color: white; padding: 60px 0; border-radius: 30px 30px 0 0; margin-top: -40px; position: relative; z-index: 10; }
.urgency-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; text-align: center; }
.urgency-item h4 { color: #FFB800; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 12px; letter-spacing: 1px; }
.urgency-item p { font-size: 1.4rem; font-weight: 700; }

/* SERVICE BOXES */
.section { padding: 120px 0; background: var(--gray-light); }
.white-bg { background: var(--white); }
.sectionTitle { font-size: 3.5rem; font-weight: 800; text-align: center; margin-bottom: 70px; letter-spacing: -1px; }

.servicesGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.serviceCard {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.serviceCard:hover { transform: translateY(-10px); border-color: #FFB800; }
.icon-circle { background: var(--gray-light); width: 70px; height: 70px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 25px; }
.serviceCard h3 { font-size: 1.7rem; margin-bottom: 15px; font-weight: 800; }
.serviceCard p { color: #555; font-size: 1.05rem; line-height: 1.5; }

/* PRICING & CONTACT BOXES */
.pricingGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.priceCard { background: white; padding: 50px; border-radius: 24px; border: 1px solid var(--gray-border); text-align: center; box-shadow: var(--shadow); }
.priceCard.featured { border: 4px solid var(--black); transform: scale(1.05); }

.contact-container {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

/* FOOTER */
.footer { background: var(--white); padding: 80px 0 40px; text-align: center; border-top: 1px solid var(--gray-border); }
.copyright { margin-top: 30px; font-size: 0.9rem; color: #888; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .servicesGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .heroTitle { font-size: 3rem; }
    .hero-box { padding: 30px; }
    .servicesGrid { grid-template-columns: 1fr; }
    .wa-action-card { flex-direction: column; text-align: center; gap: 20px; }
    .ctaButtons { flex-direction: column; }
    .contact-container { grid-template-columns: 1fr; padding: 30px; }
}

/* Pricing Extras */
.pricing-header { text-align: center; margin-bottom: 50px; }
.price-desc { font-weight: 500; opacity: 0.7; margin-top: -10px; }
.priceFeatures { list-style: none; padding: 0; margin: 30px 0; text-align: left; flex-grow: 1; }
.priceFeatures li { padding: 12px 0; border-bottom: 1px solid #eee; font-weight: 500; }
.priceFeatures li::before { content: "✓ "; color: #FF8A00; font-weight: 800; margin-right: 8px; }

/* Contact Form Extras */
.contact-container { background: white; border-radius: 30px; box-shadow: var(--shadow); overflow: hidden; display: grid; grid-template-columns: 1.6fr 1fr; }
.contact-form-side { padding: 60px; }
.contact-info-side { background: var(--black); color: white; padding: 60px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.styled-form label { display: block; margin-bottom: 8px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; color: #666; }
.styled-form input, .styled-form select, .styled-form textarea { width: 100%; padding: 15px; border: 1.5px solid #eee; border-radius: 10px; margin-bottom: 20px; font-family: inherit; font-size: 1rem; }
.styled-form input:focus { border-color: #FFB800; outline: none; }

.info-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px; }
.info-details h4 { color: #FFB800; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* Center Text Utility */
.center-text { text-align: center; max-width: 600px; margin: 0 auto 40px; font-size: 1.2rem; }

@media (max-width: 850px) {
    .contact-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .priceCard.featured { transform: none; margin: 20px 0; }
}

/* FAQ Page Specifics */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for desktop */
    gap: 25px;
    margin-bottom: 60px;
}

.faq-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: #FFB800;
}

.faq-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--black);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-card h4::before {
    content: "Q.";
    color: #FF8A00;
}

.faq-card p {
    color: #555;
    line-height: 1.5;
    font-size: 1rem;
}

.faq-footer {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 30px;
    border: 2px dashed #ddd;
}

/* Mobile FAQ */
@media (max-width: 850px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-card {
        padding: 25px;
    }
}