/**
 * company-services.css - Services Page Styles
 * Global styles: main.css | Company shared: company.css
 * This file: page-specific overrides only
 * NO duplicate :root variables - uses main.css directly
 */

/* =============================================
   LOADING OVERLAY
   ============================================= */
#loading-overlay {
    position: fixed; inset: 0;
    background: var(--bg-primary);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 9999; transition: opacity 0.5s ease;
}
#loading-overlay .spinner {
    width: 48px; height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-gold);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
#loading-overlay .loading-text {
    color: var(--text-secondary); font-family: var(--font-secondary);
    font-size: 0.9rem; margin-top: 1rem;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   DARK THEME BASE
   ============================================= */
body.dark-theme {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* =============================================
   SECTION LAYOUT
   ============================================= */
.section { padding: 6rem 0; position: relative; }
.section:nth-child(odd) { background-color: var(--bg-primary); }
.section:nth-child(even) { background-color: var(--bg-secondary); }

/* =============================================
   PREMIUM SECTION HEADERS
   ============================================= */
.premium-section-header { text-align: center; margin-bottom: 4rem; }
.premium-section-header h2 {
    font-family: var(--font-heading);
    color: var(--text-primary); font-size: 2.8rem;
    font-weight: var(--font-weight-bold); margin-bottom: 1rem;
}
.premium-section-header p {
    font-family: var(--font-primary);
    color: var(--text-secondary); font-size: 1.15rem;
    max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.premium-section-header::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
    margin: 1.5rem auto 0; border-radius: 2px;
}

/* =============================================
   PREMIUM CARD
   ============================================= */
.premium-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}
.premium-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-2xl);
    border-color: rgba(251, 191, 36, 0.12);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-item {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-item.animated { opacity: 1; transform: translateY(0); }

/* =============================================
   TEXT UTILITIES
   ============================================= */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; z-index: 1000;
    width: 60px; height: 60px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal); text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* =============================================
   SERVICES PAGE SPECIFIC
   ============================================= */

/* Service pricing table emphasis */
.service-price-highlight {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.8rem; font-weight: var(--font-weight-bold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767.98px) {
    .section { padding: 3rem 0; }
    .premium-section-header h2 { font-size: 1.8rem; }
    .premium-card { border-radius: var(--border-radius-lg); }
    .whatsapp-btn { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
