/* Cattleman's AI Premium Styles */
/* Dark Futuristic Ranch Theme */

:root {
    --c-deep-navy: #0a1628;
    --c-dark-blue: #0f2847;
    --c-midnight: #0a0f1a;
    --c-leather: #8b5a2b;
    --c-leather-light: #a67c52;
    --c-ai-blue: #00d4ff;
    --c-ai-blue-glow: #00a8cc;
    --c-neon: #39ff14;
    --c-dark: #0a0a0f;
    --c-darker: #050508;
    --c-white: #f5f5f5;
    --c-gray: #a0a0a0;
    --c-gold: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--c-darker);
    color: var(--c-white);
    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;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--c-ai-blue), var(--c-ai-blue-glow));
    color: var(--c-dark);
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--c-ai-blue);
    color: var(--c-ai-blue);
}

.cta-btn-secondary:hover {
    background: var(--c-ai-blue);
    color: var(--c-dark);
}

/* Header/Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
}

.logo-text span {
    color: var(--c-ai-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--c-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--c-ai-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-ai-blue);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-darker) 0%, var(--c-dark-blue) 50%, var(--c-darker) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><linearGradient id="g" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%230d2818"/><stop offset="50%25" style="stop-color:%230a0a0f"/><stop offset="100%25" style="stop-color:%230d2818"/></linearGradient></defs><rect fill="url(%23g)" width="1440" height="900"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--c-darker) 70%);
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--c-ai-blue);
    color: var(--c-ai-blue);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--c-white) 0%, var(--c-ai-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--c-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-ai-blue);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.stat-label {
    color: var(--c-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--c-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Problem Section */
.problem-section {
    background: var(--c-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--c-ai-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--c-ai-blue);
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--c-white);
}

.problem-card p {
    color: var(--c-gray);
}

/* Solution Section */
.solution-section {
    background: linear-gradient(180deg, var(--c-darker) 0%, var(--c-midnight) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--c-ai-blue);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--c-ai-blue), var(--c-ai-blue-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.solution-card h3 {
    margin-bottom: 1rem;
    color: var(--c-white);
}

.solution-card p {
    color: var(--c-gray);
}

/* Results Section */
.results-section {
    background: var(--c-dark);
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.result-item {
    padding: 2rem;
}

.result-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--c-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.result-label {
    color: var(--c-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Section */
.why-section {
    background: var(--c-darker);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    margin-bottom: 2rem;
}

.why-text p {
    color: var(--c-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.why-features {
    list-style: none;
    margin-top: 2rem;
}

.why-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-features li::before {
    content: '✓';
    color: var(--c-ai-blue);
    font-weight: bold;
}

.why-visual {
    background: linear-gradient(135deg, var(--c-midnight), var(--c-dark));
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--c-dark-blue) 0%, var(--c-midnight) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2300d4ff" opacity="0.3"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--c-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Page */
.services-hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    text-align: center;
    background: var(--c-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--c-ai-blue);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--c-gold);
    background: rgba(212, 175, 55, 0.05);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--c-white);
}

.service-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-ai-blue);
    margin: 1.5rem 0;
}

.service-card .price span {
    font-size: 1rem;
    color: var(--c-gray);
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--c-gray);
}

.service-features li::before {
    content: '✓';
    color: var(--c-neon);
    margin-right: 0.5rem;
}

/* Contact Page */
.contact-hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    text-align: center;
    background: var(--c-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--c-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--c-dark);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--c-white);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-ai-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-text h4 {
    color: var(--c-white);
    margin-bottom: 0.25rem;
}

.contact-item-text p {
    color: var(--c-gray);
}

.book-call-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--c-gold);
    color: var(--c-dark);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.book-call-btn:hover {
    background: var(--c-leather-light);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--c-darker);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand p {
    color: var(--c-gray);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--c-white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: var(--c-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--c-ai-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-gray);
    font-size: 0.875rem;
}

.footer-disclaimer {
    max-width: 600px;
    text-align: center;
    color: var(--c-gray);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--c-ai-blue), transparent);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
