/* ============================================
   Global Styles & Variables - Redesigned
   ============================================ */
:root {
    /* Primary Colors - Modern Palette */
    --primary-blue: #0066ff;
    --primary-blue-dark: #0052cc;
    --primary-blue-light: #3385ff;
    
    /* Sports Colors */
    --sports-green: #00d977;
    --sports-green-dark: #00b366;
    --sports-green-light: #33e08f;
    
    /* Business Colors */
    --business-blue: #0066ff;
    --business-blue-dark: #0052cc;
    --business-blue-light: #3385ff;
    
    /* Restaurant Colors */
    --restaurant-orange: #ff6b35;
    --restaurant-orange-dark: #e55a2b;
    --restaurant-orange-light: #ff8c5c;
    
    /* Neutral Colors */
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    
    /* Gradients - Modern */
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d977 100%);
    --gradient-hero: linear-gradient(135deg, #0066ff 0%, #00d977 50%, #ff6b35 100%);
    --gradient-sports: linear-gradient(135deg, #00d977 0%, #00b366 100%);
    --gradient-business: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    --gradient-restaurant: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(0, 217, 119, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows - Modern */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 102, 255, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Navigation - Redesigned
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.875rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 700;
    color: var(--dark) !important;
    text-decoration: none;
}

.navbar-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-text {
    line-height: 1.2;
    font-size: 1.25rem;
    color: var(--dark);
}

.brand-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    margin-top: -0.2rem;
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

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

.navbar-nav .nav-link:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Hero Section - Redesigned
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.6;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--sports-green);
    bottom: -5%;
    right: -5%;
    animation-delay: 8s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--restaurant-orange);
    top: 50%;
    right: 10%;
    animation-delay: 16s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

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

.hero-content {
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.hero-section .col-lg-6 {
    overflow: visible;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    word-break: keep-all;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    font-size: 1.0625rem;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

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

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

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-preview-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.preview-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--dark);
    z-index: 3;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.preview-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.preview-card-1 {
    top: 10%;
    left: -5%;
    animation: floatCard 6s infinite ease-in-out;
}

.preview-card-1 .preview-icon {
    background: var(--gradient-sports);
}

.preview-card-2 {
    top: 50%;
    right: -5%;
    animation: floatCard 6s infinite ease-in-out 2s;
}

.preview-card-2 .preview-icon {
    background: var(--gradient-business);
}

.preview-card-3 {
    bottom: 10%;
    left: 5%;
    animation: floatCard 6s infinite ease-in-out 4s;
}

.preview-card-3 .preview-icon {
    background: var(--gradient-restaurant);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-main-image {
    position: relative;
    z-index: 1;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.hero-main-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gray);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ============================================
   Services Section - Completely Redesigned
   ============================================ */
.services-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 217, 119, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.section-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.service-item {
    position: relative;
}

.service-item-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-item-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-item-sports .service-item-inner::before {
    background: var(--gradient-sports);
}

.service-item-business .service-item-inner::before {
    background: var(--gradient-business);
}

.service-item-restaurant .service-item-inner::before {
    background: var(--gradient-restaurant);
}

.service-item:hover .service-item-inner {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.service-item:hover .service-item-inner::before {
    opacity: 1;
}

.service-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.service-icon-sports {
    background: var(--gradient-sports);
}

.service-icon-business {
    background: var(--gradient-business);
}

.service-icon-restaurant {
    background: var(--gradient-restaurant);
}

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

.service-badge {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.badge-sports {
    background: var(--gradient-sports);
}

.badge-business {
    background: var(--gradient-business);
}

.badge-restaurant {
    background: var(--gradient-restaurant);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 119, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-item-sports .service-image-overlay {
    background: linear-gradient(135deg, rgba(0, 217, 119, 0.15) 0%, rgba(0, 179, 102, 0.15) 100%);
}

.service-item-business .service-image-overlay {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 82, 204, 0.15) 100%);
}

.service-item-restaurant .service-image-overlay {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(229, 90, 43, 0.15) 100%);
}

.service-item:hover .service-image-overlay {
    opacity: 1;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.service-features-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--dark-light);
    font-weight: 500;
}

.service-features li i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.service-item-sports .service-features li i {
    color: var(--sports-green);
}

.service-item-business .service-features li i {
    color: var(--business-blue);
}

.service-item-restaurant .service-features li i {
    color: var(--restaurant-orange);
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: var(--white);
    width: fit-content;
    box-shadow: var(--shadow-md);
}

.service-item-sports .service-link-btn {
    background: var(--gradient-sports);
}

.service-item-business .service-link-btn {
    background: var(--gradient-business);
}

.service-item-restaurant .service-link-btn {
    background: var(--gradient-restaurant);
}

.service-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
    gap: 0.75rem;
}

/* ============================================
   About Section - Modern Light Design
   ============================================ */
.about-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 50%, #fff4e6 100%);
    color: var(--dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 217, 119, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-section .section-badge {
    background: linear-gradient(135deg, #0066ff 0%, #00d977 100%);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.about-section .section-title {
    color: var(--dark);
    margin-bottom: 0;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-lead {
    font-size: 1.375rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.01em;
}

.about-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.about-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    border-color: #0066ff;
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.highlight-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066ff 0%, #00d977 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    transition: all var(--transition-normal);
}

.highlight-card:hover .highlight-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.35);
}

.highlight-text {
    flex: 1;
}

.highlight-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.3px;
}

.highlight-text p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.about-stats-section {
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat-item-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.stat-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff 0%, #00d977 100%);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-item-card:hover {
    border-color: #0066ff;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.2);
}

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

.stat-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066ff 0%, #00d977 100%);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.25);
    transition: all var(--transition-normal);
}

.stat-item-card:hover .stat-icon-box {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066ff 0%, #00d977 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

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

/* ============================================
   Why Choose Us Section - Redesigned
   ============================================ */
.why-choose-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 auto 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

.feature-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
    font-size: 0.75rem;
}

/* ============================================
   Vision & Commitment Section - Modern Redesign
   ============================================ */
.vision-commitment-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.vision-commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 217, 119, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.vision-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.vision-card,
.commitment-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff 0%, #00d977 100%);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.vision-card:hover::before,
.commitment-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover,
.commitment-card:hover {
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.2);
}

.vision-header,
.commitment-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.vision-icon-wrapper,
.commitment-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0066ff 0%, #00d977 100%);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.25);
    transition: all var(--transition-normal);
}

.vision-card:hover .vision-icon-wrapper,
.commitment-card:hover .commitment-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
}

.vision-card .section-title,
.commitment-card .section-title {
    margin: 0;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.vision-card .lead {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
}

.vision-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.vision-list li {
    padding: 0.75rem 0;
    color: var(--dark-light);
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.vision-list li i {
    color: #00d977;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

.commitment-item {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 217, 119, 0.03) 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.commitment-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 217, 119, 0.08) 100%);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.12);
}

.commitment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0066ff 0%, #00d977 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    transition: all var(--transition-normal);
}

.commitment-item:hover .commitment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.35);
}

.commitment-content {
    flex: 1;
}

.commitment-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.commitment-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

/* ============================================
   Contact Section - Redesigned
   ============================================ */
.contact-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.35);
}

.contact-item span {
    font-size: 0.9375rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

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

.contact-buttons .btn {
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Footer - Professional & Subtle Design
   ============================================ */
.footer {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 50%, #fff4e6 100%);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 217, 119, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.footer-brand-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-brand-text h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.01em;
}

.footer-brand-text p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin: 0;
    font-weight: 500;
}

.footer-tagline {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

.footer-main {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column-title i {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    padding: 0.25rem 0;
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: all var(--transition-normal);
    color: var(--primary-blue);
}

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

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

.footer-contact-column {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 1rem;
    border: 2px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark);
    font-size: 0.9375rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.footer-contact-list li:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3);
}

.footer-contact-list a {
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.footer-contact-list a:hover {
    color: var(--dark);
}

.footer-contact-list span {
    color: var(--gray);
    font-weight: 500;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.5);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

.footer-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-tags span {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-divider {
    opacity: 0.3;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray) !important;
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: 0.25rem 0;
}

.legal-link i {
    font-size: 1rem;
    color: var(--primary-blue);
    transition: all var(--transition-normal);
}

.legal-link:hover {
    color: var(--dark) !important;
    transform: translateX(5px);
}

.legal-link:hover i {
    color: var(--primary-blue-dark);
}

/* ============================================
   Legal Modal Styles
   ============================================ */
.modal-content {
    border-radius: 1.5rem;
    border: none;
    box-shadow: var(--shadow-2xl);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 1.5rem 1.5rem 0 0;
    border-bottom: none;
    padding: 1.5rem 2rem;
}

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

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-body h4 {
    color: var(--dark-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.modal-body p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
        opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    }

.scroll-top-btn.visible {
        opacity: 1;
    visibility: visible;
    }

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .vision-commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-visual {
        height: 500px;
        margin-top: 3rem;
    }
    
    .preview-card {
        display: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .service-icon-wrapper {
        position: static;
        flex-direction: row;
        justify-content: center;
    }
    
    .service-badge {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
    }
    
    .about-main-content {
        gap: 3rem;
    }
    
    .about-text-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .about-highlights-grid {
        gap: 0.875rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.875rem;
    }
    
    .feature-card {
        padding: 1.25rem 0.875rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .feature-card h4 {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .feature-card p {
        font-size: 0.6875rem;
    }
    
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-item-inner {
        padding: 1.5rem;
    }
    
    .service-content-wrapper {
        gap: 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-features-box {
        padding: 1.25rem;
    }
    
    .about-section {
        padding: 3.5rem 0;
    }
    
    .about-header {
        margin-bottom: 2.5rem;
    }
    
    .about-section .section-title {
        font-size: 2rem;
    }
    
    .about-main-content {
        gap: 2.5rem;
    }
    
    .about-text-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-lead {
        font-size: 1.125rem;
    }
    
    .about-description {
        font-size: 0.9375rem;
    }
    
    .highlight-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .highlight-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item-card {
        padding: 1.5rem 1.25rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    .vision-commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-card,
    .commitment-card {
        padding: 2rem;
    }
    
    .commitment-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .vision-card .section-title,
    .commitment-card .section-title {
        font-size: 1.625rem;
    }
    
    .vision-card .lead {
        font-size: 1rem;
    }
    
    .vision-card p {
        font-size: 0.875rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin: 2rem 0;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .contact-item span {
        font-size: 0.875rem;
    }
    
    .contact-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .contact-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .contact-buttons .btn:last-child {
        grid-column: 1 / -1;
    }
    
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-contact-column {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 0.75rem 0.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card-body {
        padding: 1.25rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .vision-card,
    .commitment-card {
        padding: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item:last-child {
        grid-column: 1 / -1;
    }
    
    .contact-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .contact-buttons .btn:last-child {
        grid-column: 1 / -1;
    }
    
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-contact-column {
        grid-column: 1 / -1;
    }
}
