/* CSS Variables - Purple/Pink/Gold Theme */
:root {
    --primary-dark: #1a0b2e;
    --primary: #2d1b4e;
    --primary-light: #4a3058;
    --accent: #e91e63;
    --accent-light: #ff4081;
    --accent-gold: #ffd700;
    --accent-purple: #9c27b0;
    --text-light: #f5f5f5;
    --text-muted: #b8a9c9;
    --bg-dark: #0d0614;
    --bg-card: #1a1030;
    --border: #3d2b54;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* SITE BANNER */
.site-banner {
    background: linear-gradient(90deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
    text-align: center;
    padding: 2rem 0;
    border-bottom: 3px solid #e91e63;
}

.site-banner h1 {
    color: #ffd700;
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

.site-banner .tagline {
    color: #b8a9c9;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    display: block;
}

/* SINGLE NAVIGATION BAR - NO FLEX NONSENSE */
.site-nav {
    background: #0d0614;
    border-bottom: 2px solid #3d2b54;
    padding: 1.25rem 0;
}

.site-nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-nav a {
    color: #b8a9c9;
    font-size: 1.2rem; /* BIGGER TEXT */
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px; /* Thicker underline */
    background: #e91e63;
    transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    width: 100%;
}

.site-nav a:hover {
    color: #f5f5f5;
}

.site-nav a[aria-current="page"] {
    color: #e91e63;
}

/* Mobile */
@media (max-width: 768px) {
    .site-banner h1 {
        font-size: 2.5rem;
    }
    
    .site-nav ul {
        gap: 1.5rem;
    }
    
    .site-nav a {
        font-size: 1.1rem; /* Still bigger on mobile */
    }
}
/* Buttons */
.btn-call, .btn-primary, .btn-secondary, .btn-pay {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-call {
    background: var(--accent);
    color: white;
}

.btn-call:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1rem 2rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 1rem 2rem;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-pay {
    background: #4caf50;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-pay:hover {
    background: #66bb6a;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Rates Page Specific */
.rates-intro {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    margin: 2rem 0;
    text-align: center;
}

.rates-intro h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.rates-intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.pay-online-highlight {
    background: linear-gradient(135deg, #1a3a1a 0%, #0d280d 100%);
    border: 2px solid #4caf50;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
}

.pay-online-highlight h3 {
    color: #4caf50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pay-online-highlight .benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.pay-online-highlight .benefit {
    color: #e8f5e9;
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.2);
}

.price-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.price-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.price-card li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 0.5rem;
}

.payment-methods {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.payment-methods h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Operators Section */
.operators {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.operators h2 {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Operator Grid */
.operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.75rem;
    justify-items: center;
}

.operator-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.card-link {
    display: block;
    color: inherit;
}

.operator-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.operator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.operator-card:hover .operator-image img {
    transform: scale(1.05);
}

.operator-info {
    padding: 1rem;
}

.operator-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-light);
}

.operator-tags {
    margin-bottom: 0.75rem;
}

.tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-muted);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.tag.dominant {
    background: var(--accent);
    color: white;
}

/* Optional: Make action tags different color */
.tag:nth-child(2) {
    background: #9c27b0; /* Purple for action tags */
}
.operator-bio {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.operator-card:hover .operator-bio {
    opacity: 1;
    max-height: 80px;
    margin-bottom: 0.75rem;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: #0d0614;
    border-top: 2px solid #3d2b54;
    padding: 2rem 0;
}

.footer-nav {
    width: 100%;
    margin-bottom: 1.5rem;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #b8a9c9;
    font-weight: 500;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: #e91e63;
}

.footer-legal {
    text-align: center;
    border-top: 1px solid #3d2b54;
    padding-top: 1.5rem;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .site-banner h1 {
        font-size: 2rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .pay-online-highlight .benefits {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .operator-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .operator-image {
        height: 200px;
    }
    
    .operator-bio {
        opacity: 1;
        max-height: 80px;
        margin-bottom: 0.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}