/* ===== PREMIUM FTURBO WEBSITE CSS ===== */

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

:root {
    /* Primary Colors */
    --primary-red: #E31E24;
    --primary-red-dark: #B71A1E;
    --primary-red-light: #FF3A3F;
    
    /* Dark Colors */
    --dark-900: #0F0F0F;
    --dark-800: #1A1A1A;
    --dark-700: #2C2C2C;
    --dark-600: #404040;
    
    /* Light Colors */
    --light-100: #FFFFFF;
    --light-200: #F8F9FA;
    --light-300: #E9ECEF;
    
    /* Accents */
    --accent-gold: #FFD700;
    --accent-gray: #64748B;
    --accent-light-gray: #E8EAF1;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #2C2C2C 100%);
    --gradient-red: linear-gradient(135deg, #E31E24 0%, #B71A1E 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    
    /* Elevation Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 10px 40px rgba(227, 30, 36, 0.3), 0 5px 15px rgba(227, 30, 36, 0.2);
    --shadow-red-hover: 0 20px 60px rgba(227, 30, 36, 0.4), 0 10px 25px rgba(227, 30, 36, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-700);
    background-color: var(--light-100);
    font-weight: 400;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

h2 {
    font-size: 2.8rem;
    color: var(--dark-900);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(227, 30, 36, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light-100);
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(227, 30, 36, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--light-100);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-red);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light-100);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-100);
    padding: 150px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 2.5rem;
    animation: fadeInDown 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
}

.hero-logo img {
    height: 120px;
    width: auto;
    max-width: 280px;
    filter: drop-shadow(0 15px 50px rgba(227, 30, 36, 0.7))
            drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 20px 60px rgba(227, 30, 36, 0.9))
            drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6));
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 16px 40px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--light-100);
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-100);
    border: 2px solid var(--light-100);
}

.btn-secondary:hover {
    background-color: var(--light-100);
    color: var(--dark-900);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-cta {
    background: var(--gradient-red);
    color: var(--light-100);
    box-shadow: var(--shadow-red);
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red-hover);
}

.icon-inline {
    width: 18px;
    height: 18px;
}

.icon-sm {
    width: 14px;
    height: 14px;
}

.icon-xs {
    width: 12px;
    height: 12px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 20px;
    background: var(--gradient-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.about-card {
    background: var(--light-100);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(227, 30, 36, 0.05) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-top-color: var(--primary-red-light);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover .icon-wrapper {
    background: var(--gradient-red);
    color: var(--light-100);
    transform: scale(1.1) rotate(10deg);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--accent-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-link:hover {
    gap: 10px;
    color: var(--primary-red-dark);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-size: cover;
    background-position: center;
    color: var(--light-100);
    padding: 120px 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-content .section-header h2,
.services-content .section-subtitle {
    color: var(--light-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.3) 0%, transparent 70%);
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    top: -25%;
    right: -25%;
    width: 250px;
    height: 250px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.3), 0 10px 25px rgba(0, 0, 0, 0.5);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.15;
    font-weight: 900;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.5);
}

.service-icon i {
    color: var(--light-100);
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-100);
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 100px 20px;
    background: var(--gradient-dark);
    color: var(--light-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
}

.stat-icon i {
    width: 40px;
    height: 40px;
    color: var(--light-100);
}

.stat-number {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 120px 20px;
    background: var(--gradient-dark);
    color: var(--light-100);
}

.reviews h2 {
    color: var(--light-100);
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.icon-star {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.icon-star-filled {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    fill: var(--accent-gold);
}

.rating-value {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.2rem;
}

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

.review-card {
    background: var(--light-100);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-red);
    transition: height 0.3s ease;
}

.review-card:hover::before {
    height: 100%;
}

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

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(227, 30, 36, 0.1);
    margin-bottom: 0.5rem;
}

.quote-icon i {
    width: 32px;
    height: 32px;
}

.review-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-700);
}

.review-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CTA BANNER SECTION ===== */
.cta-banner {
    background: var(--gradient-red);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--light-100);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta {
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 20px;
    background: var(--light-200);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-premium {
    background: var(--light-100);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.5rem;
}

.contact-social {
    background: var(--light-100);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-social:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-social h3 {
    font-size: 1.5rem;
    color: var(--dark-900);
    margin-bottom: 0.5rem;
}

.social-subtitle {
    font-size: 0.95rem;
    color: var(--accent-gray);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.social-link i {
    width: 24px;
    height: 24px;
}

.social-link.facebook {
    background-color: #1877F2;
    color: var(--light-100);
    border-color: #1877F2;
}

.social-link.facebook:hover {
    background-color: transparent;
    color: #1877F2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.contact-item-premium:hover .contact-item-icon {
    background: var(--gradient-red);
    color: var(--light-100);
    transform: scale(1.1);
}

.contact-item-icon i {
    width: 28px;
    height: 28px;
}

.contact-item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-900);
}

.contact-item-content p {
    color: var(--accent-gray);
}

.contact-map-premium {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-map-premium iframe {
    height: 100%;
    min-height: 500px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-900);
    color: var(--light-100);
    padding: 60px 20px 0;
    border-top: 1px solid rgba(227, 30, 36, 0.2);
}

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

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.footer-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(227, 30, 36, 0.2));
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-100);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-red);
    gap: 10px;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(227, 30, 36, 0.2);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-900);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-logo img {
        height: 90px;
        max-width: 220px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid,
    .services-grid,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo span {
        display: none;
    }

    .nav-logo img {
        height: 40px;
    }

    .services {
        min-height: auto;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .hero {
        padding: 100px 20px;
        min-height: 60vh;
    }

    .about,
    .contact {
        padding: 80px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-logo img {
        height: 70px;
        max-width: 180px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about,
    .services,
    .contact,
    .stats,
    .reviews {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 2rem;
    }



    .services-grid {
        gap: 1.5rem;
    }

    .about-card,
    .service-card,
    .review-card {
        padding: 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.reduce-motion {
    animation: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
