/* Quicky Services US Premium Color Palette */
:root {
    /* Primary Brand Colors */
    --quicky-orange: #F7931E;
    --quicky-orange-dark: #D67A0E;
    --quicky-orange-light: #FFAB4D;

    /* Neutral / Dark Tones */
    --quicky-black: #121212;
    --quicky-charcoal: #1E1E1E;
    --quicky-charcoal-light: #2D2D2D;
    --quicky-gray-dark: #4A4A4A;
    --quicky-gray: #888888;
    --quicky-gray-light: #F5F5F5;
    --quicky-white: #FFFFFF;

    /* Functional Colors */
    --quicky-success: #10B981;
    --quicky-error: #EF4444;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 10px 25px rgba(247, 147, 30, 0.2);
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--quicky-charcoal);
    background-color: var(--quicky-gray-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--quicky-black);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--quicky-black);
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Section Text Colors - Override heading colors */
.hero-section,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section span,
.hero-section div {
    color: var(--quicky-white) !important;
}

/* Premium Buttons */
.btn-primary {
    background: linear-gradient(135deg, #F7931E 0%, #E6820A 100%);
    color: var(--quicky-white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(247, 147, 30, 0.3);
    background: linear-gradient(135deg, #F7931E 0%, #E6820A 100%);
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    color: var(--quicky-white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--quicky-white);
    color: var(--quicky-black);
    border-color: var(--quicky-white);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Section Styling */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--quicky-orange);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #F7931E 0%, #E6820A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Orange Gradient Background */
.bg-quicky-orange-gradient {
    background: linear-gradient(135deg, #F7931E 0%, #E6820A 100%);
}

/* Override Tailwind's bg-quicky-orange to use gradient */
.bg-quicky-orange {
    background: linear-gradient(135deg, #F7931E 0%, #E6820A 100%);
}

.bg-dark-pattern {
    background-color: var(--quicky-black);
    background-image: radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.05) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.05) 2%, transparent 0%);
    background-size: 100px 100px;
}

/* Form Validation Styles */
input:focus:invalid,
textarea:focus:invalid {
    border-color: var(--quicky-error);
}

input:focus:valid,
textarea:focus:valid {
    border-color: var(--quicky-success);
}

.form-error {
    color: var(--quicky-error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    color: var(--quicky-success);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

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

/* Sticky Utility */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 40;
}

/* Enhanced App Download Section Gradient */
.app-download-gradient {
    background: linear-gradient(135deg, #F7931E 0%, #E6820A 100%);
    position: relative;
    overflow: hidden;
}

.app-download-gradient > * {
    position: relative;
    z-index: 10;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .glass-card {
        background: white;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}