/* ===== VITALSTEP MODERN DESIGN SYSTEM ===== */

:root {
    /* Brand Colors - Official VitalStep Colors */
    --brand-blue: #0B0B49;
    --brand-orange: #FF8200;
    --hero-red: #c8133e;
    --hero-red-dark: #a01030;
    --hero-red-light: #e01548;

    /* UI Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 11, 73, 0.08);
    --shadow-md: 0 4px 20px rgba(11, 11, 73, 0.12);
    --shadow-lg: 0 10px 40px rgba(11, 11, 73, 0.15);
    --shadow-xl: 0 20px 60px rgba(11, 11, 73, 0.2);
    --shadow-colored: 0 8px 32px rgba(255, 130, 0, 0.25);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(200, 19, 62, 0.98) 0%, rgba(160, 16, 48, 0.95) 100%);
    --gradient-blue: linear-gradient(135deg, #0B0B49 0%, #1a1a6e 100%);
    --gradient-orange: linear-gradient(135deg, #FF8200 0%, #ff9933 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);

    /* Animations */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --border-radius: 20px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: '\'' Roboto'\'', '\'' Lato'\'', -apple-system, BlinkMacSystemFont, '\'' Segoe UI'\'', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

/* ===== ANIMATED NAVIGATION ===== */
.modern-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(11, 11, 73, 0.08);
    padding: 1rem 0;
    transition: var(--transition-base);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.modern-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 40px rgba(11, 11, 73, 0.12);
}

.navbar-brand img {
    transition: var(--transition-bounce);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.navbar-brand img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.nav-link {
    color: var(--brand-blue) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::before {
    content: '\'' '\'';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--brand-orange) !important;
    transform: translateY(-2px);
}

.btn-get-started {
    background: var(--gradient-orange);
    color: white !important;
    padding: 0.7rem 2rem !important;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-colored);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

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

.btn-get-started:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 130, 0, 0.4);
}

/* ===== HERO SECTION ===== */
.modern-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(200, 19, 62, 0.95) 0%, rgba(160, 16, 48, 0.92) 100%), url('../assets/img/bg-masthead.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.modern-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 11, 73, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: '\'' Space Mono'\'', '\'' Roboto'\'', monospace;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #66e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: white;
    color: var(--hero-red) !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-modern-primary::before {
    content: '\'' '\'';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 130, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-modern-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.5);
    color: var(--brand-orange) !important;
}

.btn-modern-outline {
    background: transparent;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-modern-outline:hover {
    background: white;
    color: var(--hero-red) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: '\'' Space Mono'\'', monospace;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

.hero-blob {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 130, 0, 0.2));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobAnimation 8s ease-in-out infinite;
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes blobAnimation {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: rotate(90deg);
    }

    50% {
        border-radius: 50% 50% 30% 70% / 50% 70% 30% 60%;
        transform: rotate(180deg);
    }

    75% {
        border-radius: 30% 70% 70% 30% / 70% 40% 60% 40%;
        transform: rotate(270deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '\'' '\'';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 10px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===== SERVICES SECTION ===== */
.modern-services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-colored);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-family: '\'' Space Mono'\'', '\'' Roboto'\'', monospace;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '\'' '\'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-colored);
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

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

.service-link {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 1rem;
    color: var(--hero-red);
}

.service-card.featured {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--brand-blue);
}

.service-card.featured::before {
    background: var(--gradient-orange);
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.service-card.featured .service-link {
    color: var(--brand-orange);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-colored);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== SHOWCASE SECTION ===== */
.modern-showcase {
    background: white;
}

.showcase-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.showcase-image::before {
    content: '\'' '\'';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase-image:hover::before {
    opacity: 0.7;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(11, 11, 73, 0.1) 0%, transparent 100%);
}

.showcase-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-blue), #1a1a6e);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(11, 11, 73, 0.3);
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    font-family: '\'' Space Mono'\'', '\'' Roboto'\'', monospace;
}

.showcase-content .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    animation: slideInLeft 0.5s ease-out backwards;
}

.feature-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-list li:nth-child(4) {
    animation-delay: 0.4s;
}

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

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

.feature-list i {
    color: var(--brand-orange);
    font-size: 1.3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 2rem;
    color: var(--brand-orange);
}

.feature-item span {
    font-weight: 600;
    color: var(--brand-blue);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-blue);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '\'' '\'';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    font-family: '\'' Space Mono'\'', '\'' Roboto'\'', monospace;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTIONS ===== */
.modern-about-hero {
    background: var(--gradient-hero);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-about-hero::before {
    content: '\'' '\'';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    font-family: '\'' Space Mono'\'', '\'' Roboto'\'', monospace;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.modern-about-content {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-orange);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-colored);
    transition: var(--transition-bounce);
}

.about-card:hover .about-icon {
    transform: rotate(360deg) scale(1.1);
}

.about-icon i {
    font-size: 2.5rem;
    color: white;
}

.about-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.about-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-card {
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-family: '\'' Space Mono'\'', '\'' Roboto'\'', monospace;
}

.contact-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--brand-orange);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 130, 0, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--brand-blue);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--brand-orange);
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-item a:hover {
    color: var(--hero-red);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.modern-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    transition: var(--transition-base);
    background: white;
}

.modern-form .form-control:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(255, 130, 0, 0.1);
}

.modern-form textarea.form-control {
    resize: vertical;
}

/* ===== FOOTER ===== */
.modern-footer {
    background: #0B0B49;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-wave path {
    fill: var(--bg-light);
}

.footer-logo {
    margin-bottom: 1.2rem;
    transition: var(--transition-base);
    filter: brightness(0) invert(1);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FF8200;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
    background: #FF8200;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 130, 0, 0.3);
    border-color: #FF8200;
}

.social-icon i {
    font-size: 1.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem 0;
    margin-top: 3.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.95rem;
}

.footer-link {
    color: #FF8200;
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 500;
}

.footer-link:hover {
    color: #ff9933;
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .showcase-content {
        padding: 3rem 2rem;
    }

    .hero-blob {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .modern-services {
        padding: 60px 0;
    }

    .service-card {
        padding: 2rem;
    }

    .showcase-content h2 {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-card {
        padding: 2rem;
    }
}

/* ===== UTILITY ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Remove default App.css styles */
#root {
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}