/*
Theme Name: Satellite Experts Pro
Theme URI: https://satelliteexperts.net
Description: Professional satellite services website with animations
Version: 1.0
Author: Professional WordPress Developer
*/

/* ===== SATELLITE THEME COLORS ===== */
:root {
    --primary-blue: #1a365d;
    --satellite-purple: #6d28d9;
    --tech-teal: #0e7490;
    --accent-orange: #ea580c;
    --dark-space: #0f172a;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--dark-space);
    font-size: 16px;
    background: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-background {
    position: relative;
    overflow: hidden;
}

.animated-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(109, 40, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 116, 144, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* ===== SATELLITE ANIMATIONS ===== */
@keyframes orbit {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes signal {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.satellite-signal {
    position: relative;
}

.satellite-signal::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--satellite-purple);
    border-radius: 50%;
    animation: signal 2s ease-out infinite;
}

/* ===== PROFESSIONAL HEADER ===== */
.pro-header {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    color: var(--white);
}

.pro-header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
}

.pro-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.pro-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-contact-header {
    text-align: right;
}

.pro-phone-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.pro-phone-number:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.pro-location {
    font-size: 14px;
    color: #cbd5e1;
    margin-top: 5px;
}

/* ===== MOBILE PHONE ALERT ===== */
.mobile-phone-alert {
    display: none;
}

@media (max-width: 768px) {
    .mobile-phone-alert {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        color: white;
        padding: 15px 0;
        z-index: 99999;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        border-bottom: 3px solid var(--accent-orange);
    }
    
    .mobile-phone-alert a {
        color: white;
        text-decoration: none;
        font-weight: 800;
        font-size: 18px;
        display: inline-block;
        padding: 12px 25px;
        background: var(--accent-orange);
        border-radius: 50px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
    
    .pro-header {
        display: none;
    }
    
    body {
        padding-top: 80px;
    }
}

/* ===== HERO SECTION ===== */
.satellite-hero {
    background: linear-gradient(135deg, var(--dark-space), var(--primary-blue));
    color: var(--white);
    padding: 180px 0 120px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.satellite-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== ANIMATED CARDS ===== */
.animated-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.animated-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.1), transparent);
    transition: left 0.5s ease;
}

.animated-card:hover::before {
    left: 100%;
}

.animated-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 3px solid transparent;
}

.cta-button:hover {
    background: #c2410c;
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== FOOTER ===== */
.pro-footer {
    background: var(--dark-space);
    color: var(--white);
    padding: 70px 0 30px;
}

.pro-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.pro-footer-about h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.pro-footer-links h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pro-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.pro-footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.pro-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .pro-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}