/* Landing Page Specific Styles */
:root {
    --primary-color: #e21c35;
    --primary-dark: #4e0c28;
    --primary-light: rgba(226, 28, 53, 0.1);
    --primary-gradient: linear-gradient(135deg, #e21c35 0%, #4e0c28 100%);
    --dark-bg: #ffffff;
    --darker-bg: #f5f5f5;
    --light-text: #222222;
    --light-gray: #f5f5f5;
    --dark-text: #333333;
    --gray-text: #666666;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

@media (max-height: 760px) {
    .hero {
        padding: 120px 0 70px;
    }

    .hero-content {
        max-width: 900px;
    }
}

@media (max-height: 640px) {
    .hero {
        padding: 110px 0 60px;
    }

    .hero::before {
        background: radial-gradient(circle at top left, rgba(226, 28, 53, 0.1), transparent 55%),
                    radial-gradient(circle at bottom right, rgba(226, 28, 53, 0.05), transparent 50%);
    }

    .hero-cta {
        margin-bottom: 2.5rem;
    }

    .trusted-by {
        margin-top: 2rem;
    }
}

@media (max-height: 560px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-content {
        max-width: 540px;
    }

    .floating-card {
        display: none;
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 0px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 8px;
}

.btn i {
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(226, 28, 53, 0.25);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

.btn-light {
    background-color: white;
    color: var(--dark-text);
}

.btn-light:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    color: var(--dark-text);
    font-weight: 700;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

/* .section-subtitle::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 999px;
} */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-text);
    margin-top: 5px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    font-size: 1rem;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;

    cursor: pointer;
    z-index: 1001;
}

.hamburger i {
    color: var(--light-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 45%, rgba(245, 245, 245, 0.93) 100%),
                url('../img/growthlab.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 20%, rgba(226, 28, 53, 0.08), transparent 60%),
                radial-gradient(circle at 80% 68%, rgba(78, 12, 40, 0.05), transparent 65%);
    mix-blend-mode: normal;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.7) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
    width: 100%;
    padding-right: 40px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.3s forwards;
}

.pre-title {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.15s forwards;
}

.hero h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(.77,0,.18,1) 0.45s forwards;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(.77,0,.18,1) 0.65s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(.77,0,.18,1) 0.85s forwards;
}

.pre-title {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 36px;
}

.pre-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    opacity: 0.6;
}

.hero h1 {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    margin: 0 0 1.75rem;
    line-height: 1.12;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
    color: var(--dark-text);
}

.hero-text {
    font-size: 1.12rem;
    margin: 0 0 2.75rem;
    color: var(--dark-text);
    max-width: 560px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin: 0 0 2.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.hero-cta .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
    box-shadow: 0 18px 40px rgba(226, 28, 53, 0.25);
}

.hero-subtext {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted-text);
    opacity: 0;
    transform: translateY(15px);
    animation: slideUp 0.8s ease-out 1.05s forwards;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    color: var(--dark-text);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(245, 245, 245, 0.8);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: 999px;
    margin-right: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(226, 28, 53, 0.2);
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(226, 28, 53, 0.25);
}

.btn-video:hover .play-icon {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(226, 28, 53, 0.1);
}

/* Scroll Reveal Utilities */
.scroll-reveal {
    --reveal-x: 0;
    --reveal-y: 48px;
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
    transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s ease;
    transition-delay: var(--reveal-delay);
    will-change: opacity, transform;
}

.scroll-reveal-left {
    --reveal-x: -56px;
    --reveal-y: 0;
}

.scroll-reveal-right {
    --reveal-x: 56px;
    --reveal-y: 0;
}

.scroll-reveal-up {
    --reveal-x: 0;
    --reveal-y: 56px;
}

.scroll-reveal-down {
    --reveal-y: -56px;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.trusted-by {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 3.5rem 0 0;
    padding: 1.5rem 0 0;
    color: var(--muted-text);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 1rem;
}

.client-logos img {
    height: 28px;
    width: auto;
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%) brightness(2);
}

.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

/* About Page */
.inner-hero {
    padding: 160px 0 110px;
    position: relative;
    background: radial-gradient(circle at top left, rgba(226, 28, 53, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(78, 12, 40, 0.06), transparent 60%),
                rgba(255, 255, 255, 0.98);
    overflow: hidden;
}

.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 28, 53, 0.05), transparent 60%);
    pointer-events: none;
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.hero-text-group {
    max-width: 720px;
}

.hero-text-group,
.mv-card,
.story-content,
.story-media,
.impact-card,
.team-card,
.culture-content,
.culture-media {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.mv-card:nth-of-type(1) { animation-delay: 0.15s; }
.mv-card:nth-of-type(2) { animation-delay: 0.25s; }
.mv-card:nth-of-type(3) { animation-delay: 0.35s; }

.impact-card:nth-of-type(1) { animation-delay: 0.1s; }
.impact-card:nth-of-type(2) { animation-delay: 0.2s; }
.impact-card:nth-of-type(3) { animation-delay: 0.3s; }
.impact-card:nth-of-type(4) { animation-delay: 0.4s; }

.team-card:nth-of-type(1) { animation-delay: 0.15s; }
.team-card:nth-of-type(2) { animation-delay: 0.25s; }
.team-card:nth-of-type(3) { animation-delay: 0.35s; }

.culture-media {
    animation-delay: 0.2s;
}

.hero-text-group h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text-group p {
    font-size: 1.15rem;
    color: var(--dark-text);
    max-width: 600px;
    font-weight: 400;
    opacity: 0.85;
}

.mission-vision-section {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 28px;
}

.mv-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
    border-radius: 18px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.mv-card::after {
    content: '';
    position: absolute;
    inset: -40% 40% 40% -40%;
    background: linear-gradient(135deg, rgba(226, 28, 53, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



.mv-card:hover::after {
    opacity: 1;
}

.mv-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(226, 28, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.65rem;
}

.mv-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mv-card p {
    color: var(--muted-text);
    line-height: 1.75;
}

.story-section {
    padding: 3em 0;
    background: var(--darker-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--gray-text);
    line-height: 1.8;
}

.story-highlights {
    list-style: none;
    margin: 2.4rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.story-highlights li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--dark-text);
}

.story-highlights i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.story-media {
    position: relative;
}

.story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.story-image img {
    display: block;
    width: 100%;
    height: auto;
}

.story-card {
    position: absolute;
    right: -24px;
    bottom: -32px;
    transform: none;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    padding: 28px 34px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    max-width: 280px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.story-card .metric {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.35rem;
    padding: 0 0 0.50rem 0;
}

.story-card .metric-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-text);
    margin-bottom: 0.75rem;
}

.story-card p {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin: 0;
}

.impact-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(226, 28, 53, 0.03), rgba(255, 255, 255, 0.9));
}

.impact-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}

.impact-card {
    padding: 34px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226, 28, 53, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.impact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 28, 53, 0.4);
    box-shadow: 0 16px 40px rgba(226, 28, 53, 0.15);
}

.impact-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin: 0;
}

.impact-card p {
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

.team-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 32px;
}

.team-card {
    padding: 36px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(226, 28, 53, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(226, 28, 53, 0.25);
    box-shadow: 0 8px 25px rgba(226, 28, 53, 0.12);
}

.team-card:hover::before {
    opacity: 1;
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(226, 28, 53, 0.2);
    position: relative;
    z-index: 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin: 12px 0 4px;
    font-size: 1.2rem;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-text);
    margin-bottom: 1.2rem;
}

.team-card p {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.team-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 28, 53, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--primary-color);
    color: white;
}

.culture-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
}

.culture-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    align-items: center;
}

.culture-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.culture-content p {
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.culture-media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.cta-section.light-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark-text);
}

.cta-section.light-bg::before {
    opacity: 0.15;
}

.cta-section.light-bg h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.cta-section.light-bg p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray-text);
}

@media (max-width: 1350px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        max-width: 960px;
        gap: 32px;
    }

    .services-grid .service-card:last-child {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .container {
        grid-template-columns: minmax(0, 1fr);
        gap: 60px;
    }

    .about-image,
    .about-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .features-list {
        margin: 3rem auto;
        max-width: 640px;
    }

    .features-list {
        margin: 3rem auto;
        max-width: 640px;
    }

    .feature {
        justify-content: flex-start;
    }
}

@media (max-width: 1200px) {
    .inner-hero {
        padding: 140px 0 90px;
    }

    .story-section,
    .team-section,
    .culture-section,
    .mission-vision-section,
    .impact-stats-section {
        padding: 80px 0;
    }

    .story-grid,
    .culture-grid {
        gap: 48px;
    }

    .hero-text-group h1 {
        font-size: 2.8rem;
    }
}

/* Hero Image - Hidden on mobile and tablet */

.hero-image {
    position: relative;
    max-width: 520px;
    width: 100%;
    padding: 0;
    opacity: 0;
    animation: slideUp 0.9s ease-out 0.6s forwards;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -120px -140px -160px 60px;
    background: radial-gradient(circle at 40% 30%, rgba(226, 28, 53, 0.1), transparent 70%);
    filter: blur(90px);
    opacity: 0.65;
    z-index: 0;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 38px 70px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hide hero image on tablet and mobile */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-content .pre-title {
        padding-left: 0;
    }
    
    .hero-content .pre-title::before {
        display: none;
    }
    
    .hero-cta {
        justify-content: center;
    }

    .info-banner {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .info-banner-inner {
        gap: 32px;
    }

    .info-banner-stats {
        flex-direction: column;
        width: 100%;
    }

    .info-banner-cta-panel {
        width: 100%;
    }

    .info-banner-content h3 {
        font-size: 2rem;
    }

    .info-banner-secondary {
        padding: 90px 0;
        background-attachment: scroll;
    }

    .info-banner-stats {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
        gap: 20px;
    }
}

.hero-image-container {
    position: relative;
    display: inline-block;
    padding: 22px;
    background: linear-gradient(135deg, rgba(226, 28, 53, 0.15), rgba(78, 12, 40, 0.1));
    border-radius: 36px;
    overflow: visible;
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(8, 8, 8, 0.94), rgba(12, 12, 12, 0.82));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.hero-image-container img {
    position: relative;
    z-index: 2;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    filter: saturate(115%);
}

.floating-card {
    position: absolute;
    background: rgba(12, 12, 12, 0.78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    padding: 18px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    z-index: 3;
    opacity: 0;
    animation: slideUp 0.9s ease-out forwards, float 6s ease-in-out infinite;
    animation-delay: 0.45s, 1.8s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 195px;
}

.floating-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
}

.floating-card i {
    font-size: 1.3rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
    background: rgba(220, 39, 80, 0.22);
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .number {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.floating-card span:not(.number) {
    font-size: 0.82rem;
    color: rgba(245, 245, 245, 0.68);
    letter-spacing: 0.5px;
}

.card-1 {
    top: 14%;
    left: -55px;
    animation-delay: 1.1s, 2s;
}

.card-2 {
    bottom: 16%;
    right: -65px;
    animation-delay: 1.35s, 2.25s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 39, 80, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(220, 39, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 39, 80, 0); }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-text);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down i {
    margin-top: 5px;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Stats Banner Section */

.info-banner {
    position: relative;
    padding: 3em 0;
    background: #130d1a;
    color: #f4f6ff;
    overflow: hidden;
}

.info-banner::before,
.info-banner::after {
    content: none;
}

.info-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.info-banner-content {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.info-banner-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.info-banner-content p {
    margin-bottom: 0;
    color: rgba(230, 230, 240, 0.8);
    font-weight: 400;
}

.info-banner-value {
    margin: 1.2rem 0 0;
    font-size: 1rem;
    color: #9fffb6;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.info-banner-value .strike {
    text-decoration: line-through;
    color: var(--primary-color);
    margin: 0 0.35rem;
}

.info-banner-value .highlight {
    color: white;
    font-weight: 700;
}

.info-banner-tag {
    margin-bottom: 1rem;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.info-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.85rem;
}

.info-banner-label i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.info-banner-cta {
    white-space: nowrap;
    padding: 14px 42px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    color: #fff;
}

.info-banner-cta:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.info-banner-dark .info-banner-inner {
    flex-wrap: wrap;
}

.info-banner-stats {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.info-pulse {
    min-width: 140px;
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.pulse-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.pulse-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.65);
}

.info-banner-cta-panel {
    max-width: 360px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-banner-cta-panel p {
    margin: 0;
    color: rgba(235, 235, 245, 0.7);
    font-size: 0.95rem;
}

.cta-note {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #9fffb6;
}

.info-banner-cta-panel .info-banner-cta {
    background: linear-gradient(135deg, #ffffff, #c6d9ff);
    color: #111;
    border: none;
    font-weight: 700;
}

.info-banner-cta-panel .info-banner-cta:hover {
    box-shadow: 0 25px 45px rgba(255, 255, 255, 0.25);
}

.info-banner-secondary {
    padding: 3em 0;
    background: #130d1a;
    position: relative;
}

.info-banner-secondary .info-banner-overlay {
    display: none;
}

.info-banner-secondary .info-banner-inner {
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 24px;
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
}

.info-banner-media video {
    width: 100%;
    display: block;
    border-radius: 30px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.info-banner-secondary .info-banner-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blueprint-track {
    list-style: none;
    margin: 0;
    padding: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.blueprint-step {
    display: flex;
    gap: 16px;
    padding-left: 24px;
    position: relative;
}

.blueprint-step::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.blueprint-step:last-child::before {
    bottom: 12px;
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    alignments: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.blueprint-step:nth-child(1) .step-number {
    background: rgba(226, 28, 53, 0.15);
    border-color: rgba(226, 28, 53, 0.4);
}

.blueprint-step:nth-child(2) .step-number {
    background: rgba(250, 124, 36, 0.15);
    border-color: rgba(250, 124, 36, 0.4);
}

.blueprint-step:nth-child(3) .step-number {
    background: rgba(79, 125, 255, 0.15);
    border-color: rgba(79, 125, 255, 0.4);
}

.step-content h4 {
    margin: 0 0 0.2rem;
    color: #fff;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: rgba(240, 240, 250, 0.8);
    line-height: 1.6;
}

.blueprint-track {
    counter-reset: bp-step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 40px 0 10px;
}

.blueprint-step {
    list-style: none;
    padding-left: 36px;
    position: relative;
}

.blueprint-step::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.blueprint-step:last-child::before {
    bottom: 40px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.blueprint-step:nth-child(1) .step-number {
    background: rgba(226, 28, 53, 0.2);
    border-color: rgba(226, 28, 53, 0.5);
}

.blueprint-step:nth-child(2) .step-number {
    background: rgba(250, 124, 36, 0.2);
    border-color: rgba(250, 124, 36, 0.5);
}

.blueprint-step:nth-child(3) .step-number {
    background: rgba(79, 125, 255, 0.2);
    border-color: rgba(79, 125, 255, 0.5);
}

.step-content h4 {
    margin: 0 0 0.4rem;
    color: #fff;
    font-size: 1.15rem;
}

.step-content p {
    margin: 0;
    color: rgba(235, 235, 245, 0.75);
    line-height: 1.65;
}

.stats-banner {
    position: relative;
    padding: 110px 0 90px;
    color: var(--dark-text);
    overflow: hidden;
    background: var(--darker-bg) !important;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(226, 28, 53, 0.09), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(226, 28, 53, 0.06), transparent 60%),
        radial-gradient(circle at 40% 85%, rgba(78, 12, 40, 0.05), transparent 65%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.stats-banner-bg {
    display: none;
}

.stats-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    border-radius: 999px;
    border: 1px solid rgba(226, 28, 53, 0.15);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.stats-marquee::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
}

.stats-marquee .marquee-track {
    display: flex;
    gap: 18px;
    min-width: fit-content;
    animation: stats-marquee 20s linear infinite;
    padding-left: 24px;
}

.stats-marquee .marquee-track:nth-child(2) {
    animation-delay: -10s;
}

.stats-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: 999px;
    background: rgba(226, 28, 53, 0.08);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--dark-text);
    white-space: nowrap;
}

.marquee-pill i {
    font-size: 1rem;
    color: var(--primary-color);
}

.stats-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 15px;
}

.stats-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(226, 28, 53, 0), rgba(226, 28, 53, 0.45), rgba(226, 28, 53, 0));
    opacity: 0.8;
}

.timeline-item {
    position: relative;
    padding-left: 90px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 28px;
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(226, 28, 53, 0.15);
}

.timeline-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(34, 34, 34, 0.6);
}

.timeline-body {
    display: flex;
    gap: 24px;
    padding: 18px 0 24px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}

.timeline-item:last-child .timeline-body {
    border-bottom: none;
}

.timeline-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    background: var(--primary-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 30px rgba(226, 28, 53, 0.25);
    flex-shrink: 0;
}

.timeline-body h4 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: var(--dark-text);
}

.timeline-body p {
    margin: 0;
    color: rgba(34, 34, 34, 0.75);
    line-height: 1.6;
}

@keyframes stats-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 992px) {
    .stats-banner {
        padding: 80px 0 70px;
    }

    .stats-timeline {
        padding-left: 0;
    }

    .stats-timeline::before {
        left: 28px;
    }

    .timeline-item {
        padding-left: 78px;
    }
}

@media (max-width: 600px) {
    .stats-marquee {
        border-radius: 32px;
    }

    .timeline-body {
        flex-direction: column;
        padding-left: 0;
    }

    .timeline-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 1.5rem;
    }

    .timeline-item {
        padding-left: 64px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 10px;
    }
    
    .stat-metric {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }

    .stat-number.stat-textual {
        font-size: 1.55rem;
        letter-spacing: 0.02em;
    }

    .stat-metric.is-textual {
        gap: 0.4rem;
    }

    .info-banner {
        padding: 80px 0;
        background-attachment: scroll;
        background-position: center;
    }

    .info-banner-stats {
        gap: 18px;
    }

    .info-banner-stat {
        padding: 22px 24px;
        border-radius: 18px;
    }

    .info-banner-stat::before {
        width: 42px;
        height: 42px;
    }

    .info-banner-stat-number {
        font-size: 1.7rem;
    }

    .info-banner-stat-label {
        font-size: 0.82rem;
    }

    .info-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .info-banner-content {
        max-width: 100%;
    }

    .info-banner-content p {
        margin-bottom: 1.2rem;
    }

    .info-banner-cta {
        width: 100%;
        justify-content: center;
    }

    .info-banner-secondary {
        padding: 70px 0;
    }

    .info-banner-secondary .info-banner-inner {
        align-items: center;
        grid-template-columns: 1fr;
    }

    .info-banner-media video {
        aspect-ratio: 4 / 3;
    }

    .info-banner-stats {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .blueprint-track {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .info-banner {
        padding: 65px 0;
    }

    .info-banner-content h3 {
        font-size: 1.7rem;
    }

    .info-banner-stats {
        flex-direction: column;
        width: 100%;
    }

    .blueprint-track {
        grid-template-columns: 1fr;
    }

    .blueprint-step {
        padding-left: 30px;
    }

    .step-content {
        text-align: left;
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--darker-bg);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: -1;
}

.stats-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

}

.stat-number {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.stat-label {
    color: var(--muted-text);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Preview */
.services-preview {
    padding: 110px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    position: relative;
    overflow: hidden;
}

.services-preview::before,
.services-preview::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    filter: blur(140px);
    opacity: 0.4;
    z-index: 0;
}

.services-preview::before {
    background: rgba(226, 28, 53, 0.35);
    top: -130px;
    left: -80px;
}

.services-preview::after {
    background: rgba(79, 125, 255, 0.3);
    bottom: -120px;
    right: -60px;
}

.services-preview .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.services-preview .section-header {
    margin: 0;
    text-align: center;
    max-width: 640px;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    width: 100%;
    max-width: 1180px;
        margin:0 auto;
}

.service-feature {
    position: relative;
    padding: 50px 46px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    color: #1c1d2b;
    border: none;
    overflow: hidden;
}

.feature-growth {
    background: linear-gradient(155deg, #fff4f6 5%, #f47d8c 55%, #c71a3b 100%);
    --feature-accent: #a0172d;
    --feature-contrast: #2d0813;
    --feature-chip: rgba(255, 255, 255, 0.88);
}

.feature-experience {
    background: linear-gradient(155deg, #f4f7ff 5%, #d6e3ff 55%, #6e87ba 100%);
    --feature-accent: #34466f;
    --feature-contrast: #101b33;
    --feature-chip: rgba(255, 255, 255, 0.9);
}

.service-feature > * {
    position: relative;
    z-index: 1;
}

.feature-header h3 {
    font-size: 2.1rem;
    margin: 18px 0 12px;
    color: var(--feature-contrast, #1c1d2b);
}

.feature-header p {
    color: rgba(28, 29, 43, 0.78);
    max-width: 520px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--feature-chip, rgba(255, 255, 255, 0.75));
    color: var(--feature-contrast, #1c1d2b);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.feature-pill i {
    font-size: 1rem;
}

.mini-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 38px 0 24px;
}

.mini-service {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--feature-chip, rgba(255, 255, 255, 0.85));
    box-shadow: 0 10px 25px rgba(14, 16, 26, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-icon i {
    font-size: 1.4rem;
    color: var(--feature-accent, var(--primary-color));
}

.mini-service h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--feature-contrast, #1c1d2b);
}

.mini-service p {
    margin: 0;
    color: rgba(28, 29, 43, 0.7);
}

.feature-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 14px;
}

.feature-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 8px 0 4px;
}

.metric {
    min-width: 120px;
    padding: 12px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.metric-value {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--feature-contrast, #1c1d2b);
}

.metric-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(28, 29, 43, 0.65);
}

.service-chip {
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--feature-chip, rgba(255, 255, 255, 0.85));
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    color: var(--feature-contrast, #1c1d2b);
    font-weight: 600;
}

.service-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--feature-contrast, #1c1d2b);
    padding: 8px 0;
}

.service-link-inline i {
    transition: transform 0.3s ease;
}

.service-link-inline:hover i {
    transform: translateX(6px);
}

.services-progress {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 10px;
    display: flex;
    gap: 24px;
    padding: 32px;
    border-radius: 32px;
    background: #0f111b;
    box-shadow: 0 20px 60px rgba(5, 6, 11, 0.65);
    flex-wrap: wrap;
    position: relative;
}

.progress-step {
    display: flex;
    gap: 22px;
    padding: 18px 22px;
    border-radius: 22px;
    flex: 1 1 260px;
    position: relative;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35%;
    right: -12px;
    width: 2px;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.progress-step:nth-child(1) {
    background: linear-gradient(135deg, rgba(226, 28, 53, 0.12), rgba(15, 15, 20, 0.85));
}

.progress-step:nth-child(2) {
    background: linear-gradient(135deg, rgba(250, 124, 36, 0.12), rgba(15, 15, 20, 0.85));
}

.progress-step:nth-child(3) {
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.12), rgba(15, 15, 20, 0.85));
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f7ccd4, #e21c35);
    box-shadow: 0 10px 25px rgba(226, 28, 53, 0.35);
}

.progress-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #fddfc8, #fa7c24);
    box-shadow: 0 10px 25px rgba(250, 124, 36, 0.35);
}

.progress-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #d4e3ff, #4f7dff);
    box-shadow: 0 10px 25px rgba(79, 125, 255, 0.35);
}

.step-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.progress-step h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 1.05rem;
}

.progress-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .services-showcase {
        grid-template-columns: 1fr;
    }

    .mini-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-feature {
        padding: 38px 28px;
    }

    .mini-service {
        flex-direction: column;
    }

    .mini-icon {
        margin-bottom: 8px;
    }

    .services-progress {
        padding: 24px;
    }

    .progress-step {
        flex-basis: 100%;
    }

    .progress-step:not(:last-child)::after {
        display: none;
    }

    .step-marker {
        flex-direction: row;
        align-items: center;
    }
}

.text-center {
    text-align: center;
}

.services-cta {
    border: 2px solid transparent;
    padding: 15px 48px;
    border-radius: 999px;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                var(--primary-gradient) border-box;
    color: var(--primary-color);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: none;
    box-shadow: 0 25px 60px rgba(226, 28, 53, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-cta:hover {
    background: var(--primary-gradient);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 35px 65px rgba(226, 28, 53, 0.35);
}

.services-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.services-cta:hover i {
    transform: translateX(6px);
}

/* About Section */
.about-section {
    padding: 3em 0;
    background-color: #05060b;
    position: relative;
    overflow: hidden;
    color: #f5f5f9;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: -140px -200px 0 -200px;
    background:
        radial-gradient(circle at top left, rgba(226, 28, 53, 0.28), transparent 55%),
        radial-gradient(circle at bottom right, rgba(79, 125, 255, 0.2), transparent 60%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.about-section .container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image-container {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 16px;
    background: linear-gradient(135deg, rgba(9, 10, 17, 0.95), rgba(24, 25, 38, 0.95)) padding-box,
                linear-gradient(135deg, rgba(226, 28, 53, 0.9), rgba(79, 125, 255, 0.9)) border-box;
    border: 2px solid transparent;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.about-image-container::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(226, 28, 53, 0.3), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.about-image-container:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px 30px;
    min-width: 170px;
    color: #0c0c11;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 250, 0.95));
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border: 2px solid rgba(226, 28, 53, 0.15);
    box-shadow: 
        0 8px 30px rgba(226, 28, 53, 0.15),
        inset 0 0 0 1px rgba(226, 28, 53, 0.1);
    z-index: 3;
}

.experience-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    z-index: -1;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(0, 0, 0, 0.192);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.years {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--primary-color);
    text-shadow: none;
}

.experience-badge span:not(.years) {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    color: #0c0c11;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    color: #fdfdfd;
}

.about-content p {
    margin-bottom: 2.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(235, 235, 245, 0.78);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(9, 10, 17, 0.65);
    padding: 22px 26px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateX(8px);
    border-color: rgba(226, 28, 53, 0.6);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 28, 53, 0.25);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: inset 0 0 0 1px rgba(226, 28, 53, 0.4);
}

.feature:hover .feature-icon-wrapper {
    transform: scale(1.08);
    background: var(--primary-gradient);
}

.feature:hover .feature-icon-wrapper i {
    color: #fff;
}

.feature i {
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
    text-align: left;
}

.feature h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature p {
    margin: 0;
    font-size: 0.96rem;
    color: rgba(235, 235, 245, 0.8);
    line-height: 1.65;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: rgb(255, 255, 255);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-light {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-section .container {
        grid-template-columns: minmax(0, 1fr);
        gap: 56px;
        text-align: center;
    }

    .about-image,
    .about-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--darker-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero {
        padding: 110px 0 70px;
        text-align: center;
    }

    .hero .container {
        align-items: center;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-cta {
        justify-content: center;
    }
    
    .inner-hero {
        padding: 120px 0 80px;
    }

    .hero-text-group {
        max-width: 600px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-text-group h1 {
        font-size: 2.4rem;
    }

    .hero-text-group p {
        font-size: 1.05rem;
    }

    .mission-vision-section,
    .story-section,
    .impact-stats-section,
    .team-section,
    .culture-section {
        padding: 70px 0;
    }

    .mv-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 24px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .story-media {
        order: -1;
    }

    .story-card {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 24px auto 0;
        text-align: center;
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 24px;
    }

    .culture-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .culture-content {
        order: 2;
    }

    .culture-media {
        order: 1;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .stats-section .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }

    .inner-hero {
        padding: 110px 0 70px;
        text-align: center;
    }

    .hero-text-group {
        text-align: center;
    }

    .hero-text-group h1 {
        font-size: 2.1rem;
    }

    .hero-text-group p {
        font-size: 1rem;
    }

    .mv-grid,
    .impact-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .story-media {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .story-image {
        width: 100%;
    }

    .about-section {
        padding: 80px 0;
        text-align: center;
    }

    .about-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 42px;
        text-align: center;
    }

    .about-content {
        text-align: center;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .about-image {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }

    .experience-badge {
        right: 22px;
        left: auto;
        bottom: 18px;
        margin: 0;
        transform: none;
        padding: 24px 30px;
        min-width: 170px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content p {
        max-width: 600px;
    }

    .hero-cta {
        justify-content: center;
    }
    
    .about-section {
        padding: 70px 0 90px;
    }

    .about-section .container {
        gap: 38px;
    }

    .about-image {
        max-width: 380px;
    }
    
    .experience-badge {
        right: 18px;
        left: auto;
        bottom: 16px;
        transform: none;
        padding: 22px 28px;
        min-width: 155px;
    }

    .years {
        font-size: 2.2rem;
    }

    .feature {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-icon-wrapper {
        margin-bottom: 10px;
    }

    .features-list {
        width: 100%;
        gap: 20px;
    }

    .feature {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 26px 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    }

    .feature-icon-wrapper {
        margin-bottom: 12px;
    }

    .mv-card,
    .impact-card,
    .team-card {
        padding: 28px 24px;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .feature {
        text-align: center;
    }

    .cta-section {
        padding: 70px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }

    .mission-vision-section p,
    .story-content p,
    .story-highlights li,
    .impact-card p,
    .team-card p,
    .culture-content p,
    .culture-section .btn,
    .mv-card p {
        font-size: 0.9rem;
    }

    .story-highlights li i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        padding: 12px 30px;
    }
    
    .btn {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .stats-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        padding: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .inner-hero {
        padding: 100px 0 60px;
    }

    .hero-text-group h1 {
        font-size: 1.8rem;
    }

    .hero-text-group p {
        font-size: 0.95rem;
    }

    .story-card {
        width: 100%;
        max-width: 260px;
        padding: 20px 24px;
        right: auto;
        left: auto;
    }

    .story-media {
        width: 100%;
    }

    .story-image {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .culture-media img {
        border-radius: 18px;
    }

    .cta-section.light-bg h2 {
        font-size: 1.8rem;
    }

    .cta-section.light-bg p {
        font-size: 0.95rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }

    .mission-vision-section p,
    .story-content p,
    .story-highlights li,
    .impact-card p,
    .team-card p,
    .culture-content p,
    .culture-section .btn,
    .mv-card p {
        font-size: 0.9rem;
    }

    .story-highlights li i {
        font-size: 1rem;
    }
}

/* Footer - Enhanced UI */
.footer {
    /* margin-top: 100px; */
    padding: 110px 0 50px;
    background: radial-gradient(circle at top left, rgba(226, 28, 53, 0.06), transparent 55%) no-repeat,
                radial-gradient(circle at bottom right, rgba(78, 12, 40, 0.04), transparent 60%) no-repeat,
                linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(226, 28, 53, 0.08);
    filter: blur(120px);
    top: -180px;
    right: -160px;
    opacity: 0.6;
}

.footer::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    bottom: -220px;
    left: -120px;
    background: rgba(78, 12, 40, 0.05);
    filter: blur(140px);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer .footer-content {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(200px, 1fr));
    gap: 48px;
    padding: 32px 36px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    box-shadow: 0 25px 70px -30px rgba(226, 28, 53, 0.1);
    backdrop-filter: blur(18px);
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.footer-about p {
    margin: 0;
    color: var(--dark-text);
    line-height: 1.75;
    opacity: 0.75;
}

.footer-social {
    margin-top: 28px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(245, 245, 245, 0.8);
    color: var(--dark-text);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 28, 53, 0.3);
    box-shadow: 0 10px 25px rgba(226, 28, 53, 0.25);
    color: #fff;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover i {
    transform: scale(1.1);
    color: #fff;
}

.footer .footer-links h4,
.footer .footer-services h4,
.footer .footer-newsletter h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.footer .footer-links h4::after,
.footer .footer-services h4::after,
.footer .footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links li,
.footer-services li {
    position: relative;
    padding-left: 18px;
}

.footer-links li::before,
.footer-services li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    top: 2px;
    color: rgba(220, 39, 80, 0.8);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.footer-links a,
.footer-services a {
    display: inline-block;
    padding-left: 0;
    color: var(--dark-text);
    opacity: 0.75;
    transition: color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(6px);
    padding-left: 12px;
}

.footer-links li:hover::before,
.footer-services li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter p {
    color: rgba(245, 245, 245, 0.68);
    line-height: 1.75;
    margin-bottom: 18px;
}

.footer .newsletter-form {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.footer .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--light-text);
    font-size: 0.95rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.footer .newsletter-form input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.footer .newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(220, 39, 80, 0.2);
}

.footer .newsletter-form button {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), #ff5b8f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer .newsletter-form button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(220, 39, 80, 0.35);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--dark-text);
    font-size: 0.95rem;
}

.footer-bottom p {
    color: var(--dark-text);
    opacity: 0.75;
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    color: var(--dark-text);
    opacity: 0.75;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
    opacity: 1;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .footer .footer-content {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-services {
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer .footer-content {
        padding: 20px 16px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-social {
        justify-content: center;
        margin: 20px auto 0;
        flex-wrap: wrap;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-links,
    .footer-services {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-links h4,
    .footer-services h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .footer-links ul,
    .footer-services ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-links li,
    .footer-services li {
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-links li::before,
    .footer-services li::before {
        display: none;
    }
    
    .footer-links a,
    .footer-services a {
        display: block;
        padding: 8px 0;
        width: 100%;
        transition: all 0.2s ease;
    }
    
    .footer-links a:hover,
    .footer-services a:hover {
        transform: none;
        padding-left: 0;
        background: rgba(226, 28, 53, 0.05);
        border-radius: 6px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-light);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

i.ri-play-fill {
    color: white;
}
