/* ==========================================================================
   PCG SERVICES - Fully Responsive Design System & CSS Stylesheet
   ========================================================================== */

:root {
    --primary-navy: #0f2942;
    --dark-blue: #0a192f;
    --navy-light: #163656;
    --accent-green: #059669;
    --accent-green-hover: #047857;
    --emerald: #10b981;
    --bright-yellow: #fbbf24;
    --yellow-banner: #eab308;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* SVG Global Sizing */
svg.svg-icon {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

svg.svg-stroke {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Section Header Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 3rem auto;
}

/* Top Announcement Banner */
.top-banner {
    background: #fef08a;
    color: #854d0e;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1001;
}

.trending-pill {
    background: #eab308;
    color: #000;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ==========================================================================
   HEADER & RESPONSIVE NAVIGATION WITH STICKY SCROLL PREVIEW
   ========================================================================== */

.navbar {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

/* Fixed Scrolled Header Preview Bar with Yellow Top Accent */
.navbar.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 3.5px solid #f59e0b;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    animation: slideDownHeader 0.3s ease-out forwards;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-brand img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    list-style: none;
    gap: 1.75rem;
    margin: 0 2rem;
    padding: 0;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #1ebc57;
}

.btn-call {
    background: var(--primary-navy);
    color: var(--white);
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.btn-call:hover {
    background: #1e3a5f;
}

.btn-icon-only {
    padding: 0 !important;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent-green-hover);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Mobile Toggle Hamburger Button */
.mobile-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.mobile-drawer.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 1.25rem;
}

.mobile-nav-list li {
    margin-bottom: 0.75rem;
}

.mobile-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: block;
    padding: 0.35rem 0;
}

.mobile-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-btn-full {
    width: 100%;
    justify-content: center;
}

.mobile-quick-call {
    display: flex;
    gap: 0.75rem;
}

.mobile-quick-call a {
    flex: 1;
    justify-content: center;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 45%, rgba(15, 23, 42, 0.2) 100%), url('../banner.jpg') top center / cover no-repeat;
    color: var(--white);
    padding: 6.5rem 0 7.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    gap: 2.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-title span {
    background: linear-gradient(to right, #ea580c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient {
    background: linear-gradient(to right, #ea580c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.75rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item h3 {
    font-size: 1.6rem;
    background: linear-gradient(to right, #ea580c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.15rem;
}

.stat-item p {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
}

/* HERO FORM CONTAINER */
.lead-card {
    background: linear-gradient(to right, #ea580c, #f59e0b);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.lead-card-header {
    position: relative;
    background: var(--primary-navy);
    color: var(--white);
    text-align: center;
    padding: 1rem 1.25rem;
    border-radius: 12px 12px 0 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.lead-card-body {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0 0 12px 12px;
}

.form-alert-badge {
    background: #eff6ff;
    border: 1px dashed #3b82f6;
    color: #1e40af;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-discount-badge {
    background: #fef3c7;
    border: 1px dashed #f59e0b;
    color: #92400e;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.btn-form-submit {
    width: 100%;
    background: var(--accent-green);
    color: var(--white);
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-form-submit:hover {
    background: var(--accent-green-hover);
}

.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.form-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.form-alert-badge svg {
    margin-top: 0.15rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-dialog {
    position: relative;
    max-width: 450px;
    width: 95%;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-dialog {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    font-size: 1.75rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.modal-close:hover {
    opacity: 1;
}

/* SECTION STYLES */
.section {
    padding: 4.5rem 0;
}

.bg-light {
    background: #f8fafc;
}

.bg-white {
    background: var(--white);
}

/* CARD GRIDS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Feature & Service Cards */
.card-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    color: var(--accent-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-list {
    list-style: none;
    margin-top: auto;
}

.card-list li {
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-list li svg {
    color: var(--accent-green);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Highlight Banner */
.stats-banner {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    text-align: center;
}

.stats-banner-item h3 {
    font-size: 2rem;
    color: #d97706;
}

.stats-banner-item p {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* PROCESS TIMELINE */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 2rem 0 4rem 0;
    padding: 0;
}

.process-track-container {
    position: absolute;
    top: 27px;
    left: 50px;
    right: 50px;
    height: 4px;
    pointer-events: none;
    z-index: 1;
}

.process-track-bg {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    border-radius: 4px;
}

.process-track-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.process-step-node {
    position: relative;
    z-index: 3;
    text-align: center;
    cursor: pointer;
    width: 100px;
    transition: var(--transition);
}

.step-circle {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.step-circle svg {
    width: 22px;
    height: 22px;
    transition: var(--transition);
}

.step-node-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.process-step-node.active .step-circle {
    background: #059669;
    border-color: #10b981;
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.4);
}

.process-step-node.active .step-node-title {
    color: #0f2942;
    font-weight: 800;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.step-card.active, .step-card:hover {
    border-color: #10b981;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.15);
}

.step-card.active {
    background: #f0fdf4;
}

.step-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #3730a3;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    margin-top: 0.75rem;
}

/* Callout Bar */
.callout-bar {
    background: var(--primary-navy);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
}

.callout-text {
    font-size: 1.15rem;
    font-weight: 700;
}

.callout-price {
    color: var(--bright-yellow);
    font-size: 1.3rem;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "❯";
    transform: rotate(90deg);
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.faq-item.active .faq-question::after {
    transform: rotate(-90deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-info h5 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.user-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a:hover {
    color: var(--emerald);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Floating Scroll to Top Arrow Button */
.float-scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--primary-navy);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 41, 66, 0.3);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateY(10px);
}

.float-scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-scroll-top:hover {
    background: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-info h5 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.user-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a:hover {
    color: var(--emerald);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Floating Phone Call Button */
.float-phone {
    position: fixed;
    bottom: 92px;
    right: 24px;
    background: var(--primary-navy);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 41, 66, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-phone svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    stroke: currentColor;
    fill: none;
}

.float-phone:hover {
    background: #163656;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 41, 66, 0.5);
}

/* Floating Scroll to Top Arrow Button */
.float-scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--primary-navy);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 41, 66, 0.3);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateY(10px);
}

.float-scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-scroll-top:hover {
    background: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.mobile-hero-cta {
    display: none;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
    .nav-menu { gap: 1.2rem; }
    .hero-title { font-size: 2.3rem; }
}

@media (max-width: 992px) {
    .hide-mobile { display: none !important; }
    .mobile-toggle-btn { display: flex; }
    .nav-menu { display: none; }
    
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .process-timeline { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
    .process-track-container { display: none; }
}

@media (max-width: 768px) {
    .hero-section {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.1) 100%), url('../banner.jpg') bottom right / cover no-repeat;
        padding: 5rem 0 12rem 0;
    }
    .top-banner { font-size: 0.78rem; padding: 0.4rem 0.75rem; text-align: center; }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.98rem; }
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
    
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stats-banner { flex-direction: column; gap: 1.25rem; text-align: center; padding: 1.25rem; }
    .callout-bar { flex-direction: column; gap: 1.25rem; text-align: center; padding: 1.25rem; }
    .callout-bar div { flex-direction: column; width: 100%; }
    .callout-bar a { width: 100%; justify-content: center; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .mobile-hero-cta {
        display: inline-flex;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
        padding: 1.1rem;
        font-size: 1.1rem;
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
        animation: superPulse 2s infinite;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-hero-cta::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        animation: superShine 3s infinite;
    }

    @keyframes superPulse {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7); }
        70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(234, 88, 12, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
    }
    
    @keyframes superShine {
        0% { left: -100%; }
        20% { left: 200%; }
        100% { left: 200%; }
    }
}

@media (max-width: 480px) {
    .logo-brand img { height: 36px; }
    .hero-title { font-size: 1.65rem; }
    .stat-item h3 { font-size: 1.35rem; }
    .lead-card-header { font-size: 1.1rem; }
    .lead-card-body { padding: 1.1rem; }
    .btn-form-submit { font-size: 1rem; padding: 0.8rem; }
    
    .float-scroll-top { width: 42px; height: 42px; bottom: 20px; left: 16px; }
    .float-whatsapp { width: 48px; height: 48px; bottom: 20px; right: 16px; }
    .float-phone { width: 48px; height: 48px; bottom: 76px; right: 16px; }
}

/* ==========================================================================
   Premium Preloader Styles
   ========================================================================== */
#global-preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}
.preloader-inner {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(226, 232, 240, 0.5);
    border-top-color: var(--accent-green);
    border-right-color: var(--primary-navy);
    border-radius: 50%;
    animation: premium-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.preloader-logo {
    width: 45px;
    height: auto;
    animation: premium-pulse 2s ease-in-out infinite;
}
.preloader-text {
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: premium-pulse 2s ease-in-out infinite;
}
@keyframes premium-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes premium-pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}
body.preloader-active {
    overflow: hidden;
}
