/* ===================================
   SparkSign - Custom Styles
   Color Theme: #FF1C29 (Red) & #000239 (Deep Blue)
   =================================== */

/* CSS Variables for Theme */
:root {
    /* Primary Colors */
    --primary-red: #FF1C29;
    --primary-blue: #000239;
    --accent-red: #ff3d47;
    --accent-blue: #001a5c;

    /* Light Mode Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f2f5;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-color: rgba(0, 0, 0, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 28, 41, 0.9) 0%, rgba(0, 2, 57, 0.9) 100%);

    /* Spacing */
    --section-padding: 80px 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #0a0e1a;
    --bg-secondary: #131827;
    --bg-tertiary: #1e2537;
    --bg-card: #1a2035;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #2d3748;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-color: rgba(0, 0, 0, 0.4);
    --gradient-light: linear-gradient(135deg, rgba(255, 28, 41, 0.1) 0%, rgba(0, 2, 57, 0.1) 100%);
}

/* ===================================
   Global Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
}

[data-theme="dark"] .navbar {
    background-color: rgba(10, 14, 26, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-fast), filter var(--transition-normal);
}

[data-theme="dark"] .navbar-brand .logo {
    filter: brightness(0) invert(1);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red);
    background-color: var(--bg-tertiary);
}

[data-theme="dark"] .navbar-nav .nav-link:hover {
    background-color: rgba(255, 28, 41, 0.1);
}

/* Active state - subtle underline indicator */
.navbar-nav .nav-link.active {
    color: var(--text-primary);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* Hover on active link */
.navbar-nav .nav-link.active:hover {
    color: var(--primary-red);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 28, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--gradient-primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    margin: 0 0.5rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 28, 41, 0.4);
}

.theme-toggle i {
    position: absolute;
    font-size: 1.2rem;
    color: white;
    transition: all var(--transition-normal);
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.moon-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* CTA Button in Nav */
.cta-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all var(--transition-normal);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 28, 41, 0.3);
    color: white;
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 28, 41, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 2, 57, 0.25) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin: 1.5rem 0 1rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    opacity: 0.98;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    max-width: 620px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-buttons .btn {
    margin-bottom: 0;
}

.btn-primary {
    background: white;
    color: var(--primary-red);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-normal);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 28, 41, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .btn-primary {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .btn-primary:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

.btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-red);
    border-color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.45);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-item i {
    color: #4ade80;
    font-size: 1.3rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-blue);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ===================================
   Features Section
   =================================== */

.features-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

[data-theme="dark"] .features-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

[data-theme="dark"] .feature-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 32, 53, 0.8) 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .feature-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(255, 28, 41, 0.2), 0 0 0 1px rgba(255, 28, 41, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    color: #4ade80;
    font-size: 1rem;
}

/* Info Banner */
.info-banner {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.info-banner h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.info-banner .btn-light {
    background: white;
    color: var(--primary-red);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.info-banner .btn-light:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

[data-theme="dark"] .contact-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-info {
    padding-right: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

[data-theme="dark"] .contact-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 32, 53, 0.6) 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-details a:hover {
    color: var(--primary-red);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

[data-theme="dark"] .social-link {
    background: rgba(26, 32, 53, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .social-link:hover {
    box-shadow: 0 10px 30px rgba(255, 28, 41, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-form-wrapper {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 32, 53, 0.8) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .form-control {
    background-color: rgba(30, 37, 55, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-control:focus {
    background-color: rgba(30, 37, 55, 0.8);
    border-color: var(--primary-red);
}

.form-control:focus {
    background-color: var(--bg-primary);
    border-color: var(--primary-red);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 28, 41, 0.15);
}

.contact-form .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 28, 41, 0.4);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
    display: block;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

[data-theme="dark"] .footer {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top-color: rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 50px;
    width: auto;
    transition: filter var(--transition-normal);
}

[data-theme="dark"] .footer-logo {
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--primary-red);
    width: 20px;
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0;
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
}

.footer-tagline {
    color: var(--text-secondary);
    margin: 0;
}

.footer-tagline i {
    color: var(--primary-red);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-card {
        display: none;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .info-banner h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===================================
   Animations & Effects
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 28, 41, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 28, 41, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 28, 41, 0);
    }
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}

/* Smooth Transitions */
* {
    transition: background-color var(--transition-normal),
        color var(--transition-normal),
        border-color var(--transition-normal);
}
/* Hero Fade-in Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
