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

:root {
    --primary-red: #DC143C;
    --dark-red: #B71C1C;
    --light-red: #FF6B6B;
    --red-gradient: linear-gradient(135deg, #DC143C 0%, #B71C1C 100%);
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #666666;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Smooth page transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Interactive text selection */
::selection {
    background: var(--primary-red);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-red);
    color: var(--white);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray);
    overflow-x: hidden;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(220, 20, 60, 0.02) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(220, 20, 60, 0.02) 40px),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    scroll-behavior: smooth;
}

/* Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: pageLoad 0.6s ease-out;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(220, 20, 60, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(220, 20, 60, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.2px;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 20, 60, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(220, 20, 60, 0.04) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(220, 20, 60, 0.02) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(220, 20, 60, 0.02) 40px),
        linear-gradient(135deg, #ffffff 0%, #fff5f7 50%, #fafafa 100%);
    overflow: hidden;
}

/* Hero with background image (when added) */
.hero.with-image {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 247, 0.95) 50%, rgba(250, 250, 250, 0.95) 100%),
        url('hero-bg.webp') center/cover no-repeat;
    background-attachment: fixed;
}

/* Lazy loading images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.06) 0%, rgba(255, 255, 255, 0) 50%, rgba(220, 20, 60, 0.03) 100%);
    overflow: hidden;
}

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

.hero-background::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.06) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    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);
    }
}

/* Floating Icon Elements */
.hero-float {
    position: absolute;
    color: rgba(220, 20, 60, 0.12);
    animation: floatIcon 10s ease-in-out infinite;
    pointer-events: none;
}

.hero-float svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(220, 20, 60, 0.08));
}

.hero-float-1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.hero-float-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.hero-float-3 {
    bottom: 25%;
    left: 6%;
    animation-delay: 3s;
}

.hero-float-4 {
    bottom: 35%;
    right: 12%;
    animation-delay: 4.5s;
}

.hero-float-5 {
    top: 55%;
    left: 12%;
    animation-delay: 2s;
}

.hero-float-6 {
    top: 45%;
    right: 7%;
    animation-delay: 3.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.25;
    }
    25% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) rotate(8deg) scale(1.05);
        opacity: 0.3;
    }
    75% {
        opacity: 0.35;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

/* Hero Stats Pills */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-stat-pill {
    background: rgba(220, 20, 60, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.08);
    transition: all 0.3s ease;
}

.hero-stat-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.15);
    background: rgba(220, 20, 60, 0.12);
}

.hero-stat-pill .stat-icon {
    font-size: 1.2rem;
}

/* Hero Features Badges */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.feature-badge {
    background: var(--white);
    border: 1.5px solid rgba(220, 20, 60, 0.2);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-badge:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    animation: slideInRight 1.2s ease-out 1s forwards;
    max-width: 200px;
}

.hero-title .highlight-red {
    color: var(--primary-red);
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: var(--dark-red);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

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

/* Main Content Section */
.main-content {
    padding: 120px 0;
    background: var(--white);
}

.content-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.content-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.content-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
    font-weight: 400;
}

/* Home Contact Section */
.home-contact {
    padding: 80px 0 100px;
    background: var(--white);
}

.home-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 255, 255, 0.9));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.home-contact-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.home-contact-text p {
    font-size: 1.05rem;
    color: var(--light-gray);
    max-width: 420px;
}

.home-contact-form {
    flex: 1;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    margin-bottom: 16px;
}

.home-contact-grid .form-group:nth-child(3) {
    grid-column: 1 / -1;
}

.home-contact-submit {
    width: 100%;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

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

.service-card:hover {
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-8px);
}

.service-icon-wrapper {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
}

.service-icon-wrapper {
    margin-bottom: 25px;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-red);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.service-link:hover {
    color: var(--dark-red);
}

.service-link span {
    transition: var(--transition);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* What We Do Section */
.what-we-do {
    padding: 120px 0;
    background: var(--off-white);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--black);
    margin-bottom: 70px;
    letter-spacing: -1px;
}

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

.service-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.05);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-item:hover::before {
    width: 300px;
    height: 300px;
}

.service-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
    transform: translateY(-6px);
}

.service-item:hover .service-item-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-red);
}

.service-item-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    color: var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.service-item p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 400;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    position: relative;
}

.solutions-content {
    position: relative;
    z-index: 1;
}

.solutions-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.solutions-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-content strong {
    font-weight: 700;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
}

.section-description {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.75;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    padding: 45px 35px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(220, 20, 60, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), rgba(220, 20, 60, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-item:hover {
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.25);
    border-color: var(--primary-red);
    transform: translateY(-10px);
    background: var(--white);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
    color: var(--primary-red);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(220, 20, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--primary-red);
}

.feature-item p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.cta-button {
    text-align: center;
    margin-top: 40px;
}

/* Statistics Section */
.statistics {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 10px;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.stats-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Service Bundles Section */
.service-bundles {
    padding: 120px 0;
    background: var(--white);
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bundle-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bundle-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
    transform: translateY(-4px);
}

.bundle-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.bundle-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Delivery Approach Section */
.delivery-approach {
    padding: 120px 0;
    background: var(--off-white);
}

.approach-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.approach-step:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
    transform: translateY(-4px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.approach-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

/* About Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-gray);
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0 20px;
    background: var(--white);
}

.trusted-kicker {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-gray);
    margin-bottom: 16px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.trusted-logo {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--off-white);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-gray);
    min-width: 140px;
    text-align: center;
}


/* Success Metrics Section */
.success-metrics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    position: relative;
    overflow: hidden;
}

.success-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px);
    pointer-events: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.metric-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.metric-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.4s ease;
}

.metric-icon svg {
    width: 30px;
    height: 30px;
}

.metric-card:hover .metric-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: inline-block;
    font-feature-settings: 'tnum';
    tabular-nums: true;
}

.metric-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-left: 4px;
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Enhanced What We Do Section */
.what-we-do-enhanced {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.what-we-do-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
}

/* Enhanced Services Grid */
.services-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-enhanced-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 16px;
    border: 2px solid rgba(220, 20, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}

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

.service-enhanced-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
}

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

.service-enhanced-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transition: all 0.4s ease;
}

.service-enhanced-icon svg {
    width: 40px;
    height: 40px;
}

.service-enhanced-card:hover .service-enhanced-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.service-enhanced-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-enhanced-card:hover h3 {
    color: var(--primary-red);
}

.service-enhanced-card p {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0;
}

.service-cta-center {
    text-align: center;
    margin-top: 50px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Service Bundles Tabs */
.service-bundles-tabs {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.service-bundles-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
}

.bundles-tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.bundles-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.tab-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.bundles-tabs-content {
    position: relative;
    min-height: 200px;
}

.tab-panel {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.tab-panel.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: all;
}

.bundle-panel-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 60px 50px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(220, 20, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bundle-panel-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.05), transparent);
    transition: left 0.6s ease;
}

.tab-panel.active .bundle-panel-content::before {
    left: 100%;
}

.tab-panel.active .bundle-panel-content {
    border-color: var(--primary-red);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
    transform: translateY(-5px);
}

.bundle-panel-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.bundle-panel-content p {
    font-size: 1.15rem;
    color: var(--light-gray);
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    border: 2px solid rgba(220, 20, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case-study-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.2);
}

.case-study-logo {
    margin-bottom: 20px;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-placeholder svg {
    width: 80px;
    height: 80px;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.case-study-industry {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(220, 20, 60, 0.08);
    color: var(--primary-red);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.case-study-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-study-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 20, 60, 0.1);
}

.result-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-study-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

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

    .stat-label {
        font-size: 0.7rem;
    }
}

.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 30px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -10px;
    font-size: 8rem;
    color: rgba(220, 20, 60, 0.08);
    font-weight: 700;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 18px;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* Delivery Approach Timeline */
.delivery-approach-timeline {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.delivery-approach-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), rgba(220, 20, 60, 0.3));
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
}

/* Outcomes Compact */
.outcomes-compact {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

.outcomes-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
}

.outcomes-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.outcome-badge {
    padding: 20px 35px;
    background: var(--off-white);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
    cursor: default;
}

.outcome-badge:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-top: 30px;
    opacity: 0.95;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
}

.modal-check-icon {
    width: 100%;
    height: 100%;
    color: #28a745;
    animation: checkmarkDraw 0.6s ease-out 0.3s both;
    transform-origin: center;
}

.modal-error-icon {
    width: 100%;
    height: 100%;
    color: #dc3545;
    animation: errorPulse 0.5s ease-out;
    transform-origin: center;
}

.modal-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    animation: iconRipple 1.5s ease-out infinite;
}

.error-modal .modal-icon-wrapper::before {
    background: rgba(220, 53, 69, 0.1);
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 0 100;
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        stroke-dasharray: 100 0;
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes errorPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes iconRipple {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.modal-message {
    font-size: 1.05rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.modal-close-btn {
    animation: fadeInUp 0.5s ease-out 0.4s both;
    min-width: 150px;
}

.success-modal .modal-icon-wrapper {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-modal .modal-icon-wrapper {
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 35px 0 20px;
    position: relative;
}

.footer-top-tagline {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
    text-align: left;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section-heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--primary-red);
    margin: 0 0 12px 0;
    width: 100%;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
}

.footer-links-list a,
.footer-links-list a:link,
.footer-links-list a:visited,
.footer-links-list a:active {
    color: #9ca3af !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1.6;
    display: block;
}

.footer-links-list a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
}

.contact-link-red,
.contact-link-red:link,
.contact-link-red:visited,
.contact-link-red:active {
    color: #9ca3af !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: block;
    line-height: 1.6;
}

.contact-link-red:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-link-email,
.contact-link-email:link,
.contact-link-email:visited,
.contact-link-email:active {
    color: #9ca3af !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: block;
    line-height: 1.6;
}

.contact-link-email:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-item i {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-tagline-bottom {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.footer-social-icons i {
    width: 18px;
    height: 18px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    animation: fadeInUp 0.6s ease-out;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.email-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, var(--dark-red), #a01030);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-contact-buttons {
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-btn:hover {
    animation: none;
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

.signature-watermark {
    position: absolute;
    bottom: 15px;
    left: 25px;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.12);
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    transform: rotate(-5deg);
    z-index: 1;
}

/* Page Header (for About, Services, Contact pages) */
.page-header {
    padding: 140px 0 70px;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(255, 255, 255, 0.03) 30px),
        repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255, 255, 255, 0.03) 30px);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* Page Header Floating Elements */
.page-header-floats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    animation: floatIcon 12s ease-in-out infinite;
}

.page-float svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.page-float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.page-float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.page-float-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* About Page */
.about-content {
    padding: 100px 0;
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    color: var(--primary-red);
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 25px;
}

.values-section {
    margin-top: 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: var(--off-white);
    padding: 45px 35px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.12);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 25px;
    color: var(--primary-red);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.team-section {
    margin-top: 100px;
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(220, 20, 60, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), rgba(220, 20, 60, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.25);
    border-color: var(--primary-red);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.team-avatar::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid rgba(220, 20, 60, 0.2);
    opacity: 0;
    transition: all 0.5s ease;
    animation: ripple 2s ease-out infinite;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-avatar svg {
    width: 60px;
    height: 60px;
    z-index: 1;
    transition: transform 0.4s ease;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.team-member:hover .team-avatar {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.team-member:hover .team-avatar::before {
    opacity: 1;
    inset: -12px;
}

.team-member:hover .team-avatar::after {
    opacity: 1;
}

.team-member:hover .team-avatar svg {
    transform: scale(1.1) rotate(-5deg);
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.team-member:hover h4 {
    color: var(--primary-red);
}

.team-member p {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-member:hover p {
    color: var(--gray);
}

/* Services Page */
.services-page {
    padding: 100px 0;
    background: var(--white);
}

/* Services Cascade Layout */
.services-page-cascade {
    padding: 100px 0;
    background: var(--white);
}

.services-cascade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-cascade-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-cascade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-cascade-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-cascade-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

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

.service-cascade-card:hover {
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.18);
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: var(--primary-red);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-cascade-card:hover .service-card-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-cascade-card:hover .service-card-icon::before {
    opacity: 0.2;
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-cascade-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service-cascade-card .service-tagline {
    font-size: 0.95rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}

.service-cascade-card .service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--light-gray);
    margin-bottom: 24px;
}

.service-features-compact {
    margin-top: 20px;
}

.service-features-compact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-compact li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-features-compact li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
}

.service-detail {
    margin-bottom: 60px;
    padding: 45px;
    background: var(--off-white);
    border-radius: 6px;
    border-left: 4px solid var(--primary-red);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-red);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    border-radius: 6px;
    color: var(--white);
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 32px;
    height: 32px;
}

.service-detail h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 600;
}

.service-detail > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.service-features {
    margin-top: 30px;
}

.service-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-gray);
    line-height: 1.7;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-page {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.08);
    border-radius: 4px;
    flex-shrink: 0;
    color: var(--primary-red);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--light-gray);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.contact-note {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-style: italic;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link-btn {
    padding: 12px 24px;
    background: var(--primary-red);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    min-width: 120px;
}

.social-link-btn svg {
    display: inline-block;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    color: var(--white) !important;
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(220, 20, 60, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

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

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

    .hero-float {
        display: none;
    }

    .page-float {
        display: none;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat-pill {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 7px 15px;
    }

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

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

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

    .service-cards,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .solutions-content h2,
    .page-title {
        font-size: 2.2rem;
    }

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

    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-top-tagline {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-section-heading {
        margin-bottom: 12px;
    }
    
    @media (max-width: 600px) {
        .footer-sections {
            grid-template-columns: 1fr;
            gap: 25px;
        }
    }
    
    .footer-bottom {
        justify-content: center;
    }
    
    .footer-bottom-content {
        align-items: center;
        text-align: center;
    }

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

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

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .team-member {
        padding: 35px 20px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-avatar svg {
        width: 50px;
        height: 50px;
    }

    .team-member h4 {
        font-size: 1.1rem;
    }

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

    .approach-steps {
        flex-direction: column;
        gap: 20px;
    }

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

    .services-carousel {
        min-height: 350px;
        border-radius: 12px;
    }

    .service-slide {
        padding: 60px 30px;
    }

    .service-slide-content {
        gap: 30px;
    }

    .service-slide-icon {
        width: 100px;
        height: 100px;
        padding: 25px;
    }

    .service-slide h3 {
        font-size: 1.8rem;
    }

    .carousel-controls {
        gap: 20px;
        margin-top: 40px;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1.8rem;
    }

    .bundles-tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .timeline {
        flex-direction: column;
        gap: 40px;
    }

    .timeline::before {
        width: 3px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, var(--primary-red), rgba(220, 20, 60, 0.3));
    }

    .outcomes-list {
        flex-direction: column;
        align-items: center;
    }

    .outcome-badge {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .home-contact-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 30px 20px;
    }

    .home-contact-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .modal-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-message {
        font-size: 1rem;
    }
}

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

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

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

    .service-detail {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* Timeline Extra Small Mobile */
    .timeline-grid {
        margin-left: 30px;
    }

    .timeline-item {
        gap: 20px;
        padding-bottom: 35px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
        line-height: 45px;
    }

    .delivery-approach-timeline .timeline-grid::before {
        left: 22px;
    }
}

/* AOS Custom Enhancements */
[data-aos] {
    pointer-events: auto;
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-10deg);
}

/* Smooth transitions */
.service-enhanced-card,
.feature-item,
.testimonial-card,
.timeline-item {
    will-change: transform, opacity;
}

/* Interactive Service Selector */
.service-selector {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.selector-container {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.selector-question {
    display: none;
    animation: slideInUp 0.5s ease-out;
}

.selector-question.active {
    display: block;
}

.selector-question-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 35px;
    text-align: center;
}

.select-hint {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-red);
    display: block;
    margin-top: 10px;
}

.selector-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.selector-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: var(--off-white);
    border: 2px solid rgba(220, 20, 60, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    position: relative;
}

.selector-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
}

.selector-option.selected {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.05));
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.2);
}

/* Checkbox indicator for question 1 */
.option-checkbox {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 6px;
    background: var(--white);
    transition: all 0.3s ease;
}

.selector-option.selected .option-checkbox {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.selector-option.selected .option-checkbox::after {
    content: '✓';
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.selector-option svg {
    width: 40px;
    height: 40px;
    color: var(--primary-red);
}

.option-emoji {
    font-size: 2.5rem;
}

.selector-result {
    display: none;
    text-align: center;
    animation: fadeInScale 0.6s ease-out;
}

.selector-result.active {
    display: block;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.result-service {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.result-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.selector-progress {
    margin-top: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 33.33%;
}

.progress-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
}

/* Question Navigation Buttons */
.question-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-previous,
.btn-next {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-previous {
    background: var(--white);
    border: 2px solid rgba(220, 20, 60, 0.3);
    color: var(--primary-red);
}

.btn-previous:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateX(-3px);
}

.btn-next {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-next:hover {
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-previous svg,
.btn-next svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-previous:hover svg {
    transform: translateX(-3px);
}

.btn-next:hover svg {
    transform: translateX(3px);
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .selector-container {
        padding: 35px 25px;
    }
    
    .selector-question-title {
        font-size: 1.4rem;
    }
    
    .select-hint {
        font-size: 0.8rem;
    }
    
    .selector-options {
        grid-template-columns: 1fr;
    }
    
    .result-service {
        font-size: 1.6rem;
    }
    
    .question-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-previous,
    .btn-next {
        width: 100%;
        justify-content: center;
    }

    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-bottom-right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-legal-links {
        flex-wrap: wrap;
    }

    .footer-social-icons {
        margin-top: 10px;
    }

    /* Timeline Mobile Fix - Left Aligned */
    .timeline-grid {
        flex-direction: column;
        gap: 0;
        position: relative;
        padding-left: 0;
        margin-left: 40px;
    }

    .timeline-item {
        flex: none;
        padding: 0 0 40px 0;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 25px;
        position: relative;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .timeline-content {
        flex: 1;
        text-align: left;
        padding: 0;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin: 0;
        text-align: left;
        line-height: 50px;
    }

    .timeline-content p {
        font-size: 0.85rem;
        padding: 0;
        text-align: left;
        display: none;
    }

    /* Hide horizontal line on mobile */
    .timeline-line {
        display: none;
    }

    /* Add vertical line for mobile - Through circles */
    .delivery-approach-timeline .timeline-grid::before {
        content: '';
        position: absolute;
        left: 25px;
        top: 25px;
        width: 3px;
        height: calc(100% - 65px);
        background: rgba(220, 20, 60, 0.3);
        z-index: 1;
    }
}
