/* Global Wave Master Location Page Styles */

:root {
    --gw-purple: #673ab7;
    --gw-purple-light: #f5f3ff;
    --gw-purple-glow: rgba(103, 58, 183, 0.3);
    --gw-white: #ffffff;
    --gw-text-dark: #1e293b;
    --gw-text-muted: #64748b;
    --gw-success: #10b981;
    --primary-hover: #512da8;
}

body {
    background-color: var(--gw-white);
    color: var(--gw-text-dark);
}

.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Hero Section */
.hero-master {
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
}

.hero-master::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,165.3C672,139,768,117,864,128C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Service Badges */
.trust-badge-pill {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.btn-gw-purple {
    background-color: var(--gw-purple) !important;
    color: white !important;
    padding: 0.75rem 2rem !important;
    border-radius: 3rem !important;
    font-weight: 800 !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px 0 var(--gw-purple-glow) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-gw-purple:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4) !important;
    color: white !important;
}

.btn-gw-outline {
    background-color: transparent !important;
    color: var(--gw-text-dark) !important;
    padding: 0.75rem 2rem !important;
    border-radius: 3rem !important;
    font-weight: 800 !important;
    border: 2px solid #e2e8f0 !important;
    transition: all 0.3s !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-gw-outline:hover {
    border-color: var(--gw-purple) !important;
    color: var(--gw-purple) !important;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 900;
}

/* Location Cards */
.location-card-gw {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    height: 100%;
}

.location-card-gw:hover {
    transform: translateY(-5px);
    border-color: var(--gw-purple);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.loc-icon-bg {
    width: 60px;
    height: 60px;
    background-color: var(--gw-purple-light);
    color: var(--gw-purple);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card-gw {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
}

.service-card-gw:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.pricing-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gw-purple);
    color: white;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 1.5rem;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Process Section */
.process-box {
    text-align: center;
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--gw-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px var(--gw-purple-glow);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid #f8fafc;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

/* FAQ */
.faq-gw-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-gw-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gw-text-dark);
}

/* CTA Banner */
.cta-banner-gw {
    background: linear-gradient(135deg, #673ab7 0%, #512da8 100%);
    color: white;
    border-radius: 2rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-banner-gw::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* SEO Content */
.seo-text-block {
    line-height: 1.8;
    color: var(--gw-text-muted);
}

.seo-text-block b, .seo-text-block strong {
    color: var(--gw-text-dark);
}

/* Footer Styling */
.footer-modern {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 20px;
    border-top: 1px solid #1e293b;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background: var(--gw-purple);
    color: white;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: #64748b;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: white;
}

.x-small {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .hero-master { padding: 60px 0 100px; }
    .cta-banner-gw { padding: 2rem; }
    .hero-floating-card { display: none; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .location-card-gw {
        padding: 1rem 0.5rem !important;
        border-radius: 1rem !important;
    }
    .location-card-gw .loc-icon-bg {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 0.75rem !important;
        border-radius: 0.75rem !important;
    }
    .location-card-gw .loc-icon-bg svg {
        width: 18px !important;
        height: 18px !important;
    }
    .location-card-gw h4 {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.25rem !important;
    }
    .location-card-gw .badge {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.5rem !important;
        margin-top: 0.25rem !important;
    }
}
