/* AETHER Automation - Custom Styles */

/* Typography */
.font-inter {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    background-color: #FFFFFF;
}

/* Color Variables */
:root {
    --primary: #0066FF;
    --secondary: #00E5FF;
    --text: #1a1a1a;
    --background: #FFFFFF;
}

/* Navigation */
.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #0066FF;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #0066FF, #00E5FF);
    color: white;
    text-decoration: none;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.cta-button-white {
    background: white;
    color: #0066FF;
    text-decoration: none;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 229, 255, 0.05));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.15);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Form Styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #0066FF !important;
    outline: none;
}

/* Form Message */
#form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Navbar Scroll Effect */
nav.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.active {
    max-height: 300px;
}

/* Service Detail Cards */
.service-detail {
    scroll-margin-top: 100px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 100px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    nav,
    footer,
    .cta-button,
    .whatsapp-button {
        display: none;
    }
}

