/* styles.css */
:root {
    --primary: #DC2626; /* Modern Red */
    --primary-hover: #B91C1C;
    --primary-light: #FEE2E2;
    --secondary: #1F2937; /* Dark Gray */
    --secondary-hover: #111827;
    --accent: #3B82F6; /* Blue accent */
    --dark: #0F172A;
    --light: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --white: #FFFFFF;
    --success: #10B981;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 1.5rem; font-weight: 800; }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 1.25rem; font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; font-weight: 700; }

p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2.5rem;
}

section {
    padding: 8rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    letter-spacing: -0.25px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1280px;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    top: 1rem;
    padding: 0.75rem 2rem;
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    transition: var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.08);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a:not(.btn) {
    color: var(--white);
    font-weight: 600;
    position: relative;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--white);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(220, 38, 38, 0.35) 100%), url('assets/user_hero_truck.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
        background-position: right center;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        background-position: 80% center;
    }
}

.hero-content {
    max-width: 900px;
    color: var(--white);
    text-align: left;
    z-index: 1;
}

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

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 800;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.025rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    font-weight: 400;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: rgba(220, 38, 38, 0.2);
    color: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(220, 38, 38, 0.5);
    border-radius: 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--light) 0%, rgba(248, 250, 252, 0.5) 100%);
    position: relative;
}

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

.section-header h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 4rem;
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 38, 38, 0.1);
}

.service-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
}

.icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(254, 226, 226, 0.5) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    color: var(--primary);
    transition: var(--transition);
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

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

.service-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.feature-list {
    list-style: none;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: var(--transition);
}

.feature-list li:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    padding-left: 2rem;
    transform: translateX(8px);
}

.feature-list i {
    color: var(--primary);
    font-size: 1.5rem;
    min-width: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover::after {
    opacity: 0.5;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.08);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--light) 0%, rgba(248, 250, 252, 0.5) 100%);
    padding: 8rem 0;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-info {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 4.5rem 4rem;
}

.contact-info h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}

.contact-info h4 {
    color: var(--white);
    font-weight: 700;
    margin-top: 0.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-item:nth-child(2) { animation-delay: 0.1s; }
.info-item:nth-child(3) { animation-delay: 0.2s; }
.info-item:nth-child(4) { animation-delay: 0.3s; }

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary);
    font-size: 1.75rem;
    margin-top: 0.25rem;
    min-width: 1.75rem;
}

.info-item a {
    color: rgba(255, 255, 255, 0.95);
    transition: var(--transition-fast);
    font-weight: 500;
}

.info-item a:hover {
    color: var(--primary);
}

.contact-form {
    padding: 4.5rem 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--gray-800);
    font-size: 0.975rem;
    letter-spacing: -0.25px;
    text-transform: capitalize;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.875rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--gray-100);
    color: var(--gray-800);
    font-weight: 500;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

#submitBtn {
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.125rem 2rem;
}

#submitBtn:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 6rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    color: var(--white);
    transition: var(--transition-fast);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    font-size: 1.25rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-bottom {
    padding: 2.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.success-anim {
    animation: pulse-green 2s infinite;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    h1 { font-size: clamp(1.75rem, 6vw, 2.75rem); margin-bottom: 1rem; }
    h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
    h3 { font-size: 1.25rem; }

    p {
        font-size: 1rem;
    }

    .logo img {
        height: 45px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transition: 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn) {
        color: var(--white);
        font-size: 1.1rem;
        padding: 0.875rem 0;
        display: block;
        margin-bottom: 0.75rem;
        transition: var(--transition-fast);
    }

    .nav-links a:not(.btn):hover {
        color: var(--primary);
        transform: translateX(8px);
    }

    .nav-links .btn {
        margin-top: 2rem;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 60px;
        min-height: 70vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .about-content {
        gap: 2.5rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .feature-list li {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        border-radius: 1rem;
    }

    .contact-info {
        padding: 2.5rem 2rem;
        border-radius: 1rem 1rem 0 0;
    }

    .contact-form {
        padding: 2.5rem 2rem;
        border-radius: 0 0 1rem 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.875rem 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        display: inline;
        margin: 0 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
    h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
    h3 { font-size: 1.1rem; }

    p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .hero-btns {
        gap: 0.5rem;
    }

    .hero-btns .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.75rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto 1.25rem;
    }

    .card {
        padding: 1.75rem 1.25rem;
        border-radius: 1rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.25rem;
    }

    .feature-list {
        gap: 0.75rem;
    }

    .feature-list li {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .contact-info {
        padding: 2rem 1.25rem;
    }

    .contact-form {
        padding: 2rem 1.25rem;
    }

    .info-item {
        gap: 1rem;
        margin-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .info-item i {
        font-size: 1.5rem;
    }

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

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.75rem 0.875rem;
        border-radius: 0.65rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 1.75rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-links h4 {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        margin: 0 0.75rem 0.5rem;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
}

.slide-up.is-visible {
    animation: slideInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--delay, 0s);
}

.slide-right.is-visible {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-left.is-visible {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Modern Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--white) 30%, #FCA5A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Background Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    opacity: 0.5;
    animation: float 12s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: 5%;
    left: -50px;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #9333EA; /* Purple accent */
    top: 30%;
    right: 25%;
    animation-delay: -8s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 60px) scale(1.1); }
}

/* Stats Bar */
.stats-bar-wrapper {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding: 0 2rem;
}

.stats-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: var(--gray-200);
    margin: 0 1.5rem;
}

@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 100px;
        height: 2px;
        margin: 0 auto;
    }
    
    .stats-bar-wrapper {
        margin-top: -40px;
    }
}

/* Advanced Button Glows */
.btn-glow {
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4), 0 0 50px rgba(220, 38, 38, 0.2);
    position: relative;
    z-index: 2;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.6), 0 0 60px rgba(220, 38, 38, 0.3);
}
