:root {
    --gp-primary: #ff6b35;
    --gp-primary-dark: #e65b27;
    --gp-secondary: #343a40;
    --gp-light: #f8f9fa;
    --gp-accent: #ff914d;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: var(--gp-light);
    color: #1f2937;
}

.bg-gp-primary {
    background-color: var(--gp-primary) !important;
}

.bg-gp-primary-dark {
    background-color: var(--gp-primary-dark) !important;
}

.bg-gp-primary\/10 {
    background-color: rgba(255, 107, 53, 0.1) !important;
}

.text-gp-primary {
    color: var(--gp-primary) !important;
}

.border-gp-primary {
    border-color: var(--gp-primary) !important;
}

.hover\:bg-gp-primary-dark:hover {
    background-color: var(--gp-primary-dark) !important;
}

.hover\:text-gp-primary:hover {
    color: var(--gp-primary) !important;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.12);
    color: var(--gp-primary);
}

.site-header {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
}

.topbar {
    background: linear-gradient(90deg, var(--gp-primary), var(--gp-accent));
}

.topbar a {
    color: inherit;
    text-decoration: none;
}

.topbar a:hover,
.topbar a:focus {
    color: #fff;
    opacity: 0.85;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
}

.header-cta-btn {
    min-width: 160px;
    font-weight: 600;
    width: 100%;
}

.header-cta .header-cta-btn:first-child {
    background-color: var(--gp-primary);
    color: #fff;
    border-color: transparent;
}

.hero-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.92), rgba(255, 196, 53, 0.88));
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(15, 23, 42, 0.15));
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background-color: rgba(255, 107, 53, 0.12);
    color: var(--gp-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.timeline {
    position: relative;
    padding-left: 1.75rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0.6rem;
    left: 0.25rem;
    width: 2px;
    height: calc(100% - 0.6rem);
    background: linear-gradient(180deg, var(--gp-primary), rgba(255, 107, 53, 0.05));
}

.timeline-step {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.75rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -0.4rem;
    top: 0rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gp-primary);
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.15);
}

.map-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 24px;
    overflow: hidden;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1023.98px) {
    .header-cta {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .header-cta-btn {
        width: auto;
    }
}
