/*
Theme Name: HyperOps AI
Theme URI: https://hyperopsai.com
Author: HyperOps AI
Author URI: https://hyperopsai.com
Description: A premium, futuristic one-page WordPress theme for AI-powered solar sales automation agency. Features deep navy blue, solar gold, and electric cyan branding with glassmorphism effects and smooth animations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hyperopsai
Tags: one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* ==========================================
   HyperOps AI Design System
   Futuristic AI Agency Theme
   ========================================== */

/* === CSS Variables === */
:root {
    /* Core Brand Colors */
    --background: hsl(215, 35%, 5%);
    --foreground: hsl(210, 40%, 98%);
    
    --card: hsl(220, 30%, 8%);
    --card-foreground: hsl(210, 40%, 95%);
    
    --popover: hsl(220, 30%, 10%);
    --popover-foreground: hsl(210, 40%, 95%);
    
    /* Solar Gold Primary */
    --primary: hsl(45, 100%, 50%);
    --primary-foreground: hsl(220, 30%, 8%);
    
    /* Electric Cyan Accent */
    --secondary: hsl(190, 100%, 50%);
    --secondary-foreground: hsl(220, 30%, 8%);
    
    /* Muted Variants */
    --muted: hsl(220, 25%, 12%);
    --muted-foreground: hsl(215, 20%, 65%);
    
    --accent: hsl(220, 25%, 15%);
    --accent-foreground: hsl(190, 100%, 70%);
    
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(210, 40%, 98%);
    
    --border: hsl(220, 25%, 20%);
    --input: hsl(220, 25%, 15%);
    --ring: hsl(190, 100%, 50%);
    
    --radius: 0.75rem;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(215, 35%, 5%), hsl(220, 30%, 8%));
    --gradient-gold: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 45%));
    --gradient-cyan: linear-gradient(135deg, hsl(190, 100%, 50%), hsl(200, 100%, 60%));
    --gradient-hero: linear-gradient(135deg, hsl(215, 35%, 5%) 0%, hsl(220, 30%, 8%) 50%, hsl(215, 35%, 5%) 100%);
    
    /* Glassmorphism */
    --glass-primary: hsla(220, 30%, 15%, 0.8);
    --glass-secondary: hsla(220, 25%, 20%, 0.6);
    --glass-border: hsla(190, 100%, 50%, 0.2);
    
    /* Glows */
    --glow-gold: 0 0 30px hsla(45, 100%, 50%, 0.3);
    --glow-cyan: 0 0 30px hsla(190, 100%, 50%, 0.3);
    --glow-primary: 0 0 40px hsla(190, 100%, 50%, 0.2);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-glow: box-shadow 0.3s ease;
}

/* === Base Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--gradient-primary);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* === Container === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Utility Classes === */
.glass-card {
    background: var(--glass-primary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glow-primary);
    border-radius: var(--radius);
    padding: 2rem;
}

.glow-gold {
    box-shadow: var(--glow-gold);
    transition: var(--transition-glow);
}

.glow-gold:hover {
    box-shadow: 0 0 40px hsla(45, 100%, 50%, 0.5);
}

.glow-cyan {
    box-shadow: var(--glow-cyan);
    transition: var(--transition-glow);
}

.glow-cyan:hover {
    box-shadow: 0 0 40px hsla(190, 100%, 50%, 0.5);
}

.glow-primary {
    box-shadow: var(--glow-primary);
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient-cyan {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-hero {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    box-shadow: var(--glow-gold);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px hsla(45, 100%, 50%, 0.5);
}

.btn-outline-cyan {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    box-shadow: var(--glow-cyan);
}

.btn-outline-cyan:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-outline-gold {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    box-shadow: var(--glow-gold);
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* === Forms === */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px var(--glass-border);
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(190, 100%, 50%, 0.1);
    border: 1px solid hsla(190, 100%, 50%, 0.3);
    border-radius: 9999px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* === Service Cards === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--glass-primary);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-primary);
    border-color: var(--secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyan);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* === Testimonial Cards === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass-primary);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.testimonial-author {
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-company {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* === Section Styles === */
section {
    padding: 5rem 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 3rem;
    text-align: center;
}

/* === Footer === */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* === WordPress Core === */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    padding: 0.5rem 0;
    color: var(--muted-foreground);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
}