/* ===================================
   Bulk SMS Wale - Premium Design System
   =================================== */

:root {
    /* Premium Color Palette - Bulk SMS Wale */
    --primary-color: #ff0509;
    --primary-dark: #cc0407;
    --primary-light: #ffe5e6;
    --secondary-color: #2563eb;
    --accent-gold: #ff0509;
    --accent-green: #22c55e;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e2e8f0;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
    /* Note: #16a34a is darker shade of accent-green */
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 4px 20px rgba(255, 5, 9, 0.3);
    /* Note: Using rgba with primary color values */
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Outfit', 'Roboto', Arial, sans-serif;
    --font-display: var(--font-secondary);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

/* Smooth scroll offset for anchor links */
section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #f8fafc;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

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

/* ===================================
   CONTAINER
   =================================== */

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   FLOATING BACKGROUND
   =================================== */

.floating-background {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -10;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: multiply;
    opacity: 0.7;
    animation: blob 7s infinite;
}

.blob-1 {
    width: 288px;
    height: 288px;
    background: #a78bfa;
    top: 0;
    left: -16px;
    animation-delay: 0s;
}

.blob-2 {
    width: 288px;
    height: 288px;
    background: #fbbf24;
    top: 0;
    right: -16px;
    animation-delay: 2s;
}

.blob-3 {
    width: 288px;
    height: 288px;
    background: #f472b6;
    bottom: -32px;
    left: 80px;
    animation-delay: 4s;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.2;
    pointer-events: none;
}

/* ===================================
   MODERN NAVIGATION BAR
   =================================== */

.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 5, 9, 0.1);
    /* Note: Using rgba with primary color */
}

.modern-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 40px;
    object-fit: contain;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

/* ===================================
   NAVBAR DROPDOWN
   =================================== */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid var(--light-gray);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(255, 5, 9, 0.05);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-item::after {
    display: none;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.dropdown-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.dropdown-toggle-mobile i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-toggle-mobile i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 5, 9, 0.03);
    margin: 0.5rem 0;
    border-radius: var(--radius-md);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item.active {
    background: rgba(255, 5, 9, 0.08);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
}

.whatsapp-btn {
    background: var(--accent-green);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.3);
    /* Note: Using rgba with accent-green color */
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #16a34a;
    /* Note: Darker shade of accent-green */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(34, 197, 94, 0.4);
    /* Note: Using rgba with accent-green color */
}

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

.mobile-menu-btn button {
    background: none;
    border: none;
    color: #475569;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn button:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 0;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    padding: 1rem 0.5rem;
}

.mobile-link {
    display: block;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0.25rem;
}

.mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
    background: rgba(255, 5, 9, 0.08);
    /* Note: Using rgba with primary color */
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.mobile-link:hover::before,
.mobile-link.active::before {
    height: 60%;
}

/* ===================================
   MODERN HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 100px;
    min-height: auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

/* Desktop: Left part first, Right part second */
.hero-left {
    order: 1;
}

.hero-right {
    order: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px 0 rgba(255, 5, 9, 0.1);
    /* Note: Using rgba with primary color */
    border: 1px solid rgba(255, 5, 9, 0.2);
    /* Note: Using rgba with primary color */
    width: fit-content;
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

.gradient-text {
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.75;
    max-width: 32rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: white;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-right {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: linear-gradient(to top right, #dbeafe, #e9d5ff);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.4;
    }
}

.hero-image {
    position: relative;
    z-index: 10;
    width: 90%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(0deg);
    transition: transform 0.7s ease;
    border: 8px solid white;
    max-width: 100%;
}

.hero-right:hover .hero-image {
    transform: rotate(3deg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 80px;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    right: -40px;
    animation-delay: 2s;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.card-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.card-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.card-text {
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    font-size: 0.875rem;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 1px 2px 0 rgba(255, 5, 9, 0.1);
    border: 1px solid rgba(255, 5, 9, 0.2);
    width: fit-content;
    margin-bottom: 0.5rem;
}

.section-subtitle i {
    margin-right: 0.25rem;
}

.section-subtitle img {
    height: 20px;
    width: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* ===================================
   CONTENT SECTION (Generic - Reusable)
   =================================== */

.content-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

/* ===================================
   SECTION ALT (Generic - Reusable)
   =================================== */

.section-alt {
    background: rgba(255, 229, 230, 0.5) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.section-header .section-subtitle {
    display: inline-block;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-1 {
    background: rgba(255, 5, 9, 0.1);
    color: var(--primary-color);
}

.service-icon-2 {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.service-icon-3 {
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary-color);
}

.service-icon-4 {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

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

.service-card:hover .service-icon-1 {
    background: var(--primary-color);
    color: var(--white);
}

.service-card:hover .service-icon-2 {
    background: var(--accent-green);
    color: var(--white);
}

.service-card:hover .service-icon-3 {
    background: var(--secondary-color);
    color: var(--white);
}

.service-card:hover .service-icon-4 {
    background: #8b5cf6;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.service-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

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

.service-features li i {
    color: var(--accent-green);
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

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

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

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

.why-choose-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 5, 9, 0.2);
}

.why-choose-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    transition: all 0.3s ease;
    color: var(--primary-dark);
    opacity: 0.08;
}

.why-choose-card:hover .why-choose-number {
    color: rgba(255, 5, 9, 0.15);
    transform: scale(1.1);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 5, 9, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: var(--gradient-primary);
    transform: rotate(5deg) scale(1.05);
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon i {
    color: var(--white);
}

.why-choose-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.why-choose-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   ABOUT US SECTION
   =================================== */

.about-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

.about-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.about-shape {
    position: absolute;
    opacity: 0.04;
    animation: floatShape 25s ease-in-out infinite;
}

.about-shape-1 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--gradient-primary);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.about-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    bottom: -80px;
    left: 15%;
    animation-delay: 5s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-40px) translateX(40px) scale(1.1);
    }
    50% {
        transform: translateY(-80px) translateX(-40px) scale(0.9);
    }
    75% {
        transform: translateY(-40px) translateX(-80px) scale(1.05);
    }
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: var(--white);
}

.about-section .section-header {
    text-align: left;
}

.about-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.about-section .section-description {
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

/* Center align for Service Types Section in about-section */
.about-section .section-header.center-align {
    text-align: center;
}

.about-section .section-header.center-align .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.about-section .section-header.center-align .section-title {
    text-align: center;
}

.about-section .section-header.center-align .section-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    margin-top: 2rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.about-description p strong {
    color: var(--white);
    font-weight: 600;
}

.about-stats {
    position: relative;
    z-index: 1;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 5, 9, 0.25);
}

.stat-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 5, 9, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:nth-child(1) .stat-card-icon {
    background: linear-gradient(135deg, #ff0509 0%, #cc0407 100%);
}

.stat-card:nth-child(2) .stat-card-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.stat-card:nth-child(3) .stat-card-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.stat-card:nth-child(4) .stat-card-icon {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.stat-card:hover .stat-card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 5, 9, 0.5);
}

.stat-card-content {
    position: relative;
}

.stat-card-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin: 0;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-card-number {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-plus {
    font-size: 2.25rem;
    font-weight: 800;
    margin-left: 0.25rem;
    transition: all 0.3s ease;
}

.stat-card:nth-child(1) .stat-card-plus {
    color: #ff0509;
    text-shadow: 0 2px 8px rgba(255, 5, 9, 0.4);
}

.stat-card:nth-child(2) .stat-card-plus {
    color: #2563eb;
    text-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.stat-card:nth-child(3) .stat-card-plus {
    color: #22c55e;
    text-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.stat-card:nth-child(4) .stat-card-plus {
    color: #9333ea;
    text-shadow: 0 2px 8px rgba(147, 51, 234, 0.4);
}

.stat-card:hover .stat-card-plus {
    color: var(--white);
    transform: scale(1.1);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
}

.stat-card-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0.5rem 0 0.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   INDUSTRY SOLUTIONS SECTION (TABS)
   =================================== */

.tabs-container {
    margin: 3rem 0 2rem;
    display: flex;
    justify-content: center;
}

.tabs-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 5, 9, 0.05);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 5, 9, 0.3);
}

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

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

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-panel.active {
    display: block;
}

/* Feature Tab Content Styles */
.feature-tab-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.feature-tab-content {
    text-align: left;
}

.feature-tab-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    line-height: 1.3;
}

.feature-tab-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
}

.feature-tab-image {
    position: relative;
}

.feature-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
}

.tab-panel.active {
    display: block;
}

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

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

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: center;
}

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

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 5, 9, 0.3);
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.solution-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
    padding: 0 1rem;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: calc(50% - 0.75rem);
    /* flex-shrink: 0; */
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.testimonial-slide.active .testimonial-card::before {
    transform: scaleY(1);
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(255, 5, 9, 0.1);
    border-color: rgba(255, 5, 9, 0.3);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 5, 9, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 5, 9, 0.3);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
    font-family: var(--font-secondary);
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 0 1rem;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 5, 9, 0.2);
}

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

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: var(--white);
    padding: 0.4rem 0.875rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 9999px;
}

.testimonial-dot:hover {
    background: rgba(255, 5, 9, 0.5);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 5rem 0;
    position: relative;
}

.cta-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 4rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), var(--shadow-primary);
    overflow: hidden;
}

.cta-decorative-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-circle-1 {
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    transform: translate(20%, -20%);
}

.cta-circle-2 {
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    transform: translate(-10%, 10%);
}

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

.cta-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-btn-primary:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), var(--shadow-primary);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 5, 9, 0.02);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   FOOTER
   =================================== */

.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(239, 127, 2, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(186, 215, 1, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

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

/* Company Section */
.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    background: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15), var(--shadow-primary);
    border-color: var(--primary-color);
    border-width: 4px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(186, 215, 1, 0.3);
    border-color: var(--accent-gold);
}

.social-icon i {
    color: #FFFFFF;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

/* Contact Section */
.footer-contact .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

/* Footer Separator */
.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    margin: 50px 0 30px 0;
}

/* Footer Credits */
.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits p a:hover {
    color: var(--accent-gold);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 127, 2, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(239, 127, 2, 0.5);
}

/* ===================================
   ANIMATIONS
   =================================== */

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet and Desktop - 1024px and below */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(3.75rem, 8vw, 4.5rem);
    }
    
    .hero-section {
        padding-top: 170px;
        padding-bottom: 70px;
        min-height: auto;
    }
    
    .hero-glow {
        max-width: 400px;
        height: 400px;
    }
    
    .hero-image {
        border-width: 6px;
    }
    
    .card-1 {
        top: 40px;
        left: -30px;
    }
    
    .card-2 {
        bottom: 40px;
        right: -30px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .content-section {
        padding: 5rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* .tabs-nav {
        gap: 0.5rem;
        padding: 0.4rem;
    } */
    
    .tab-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    html {
        font-size: 14px;
    }
    
    .hero-section {
        padding-top: 150px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile: Left part first, Right part second */
    .hero-left {
        order: 1;
        gap: 1.5rem;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-title {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-glow {
        max-width: 400px;
        height: 400px;
    }
    
    .hero-image {
        border-width: 6px;
        /* transform: rotate(0deg); */
    }
    
    .floating-card {
        display: flex;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .card-1 {
        top: 40px;
        left: -30px;
    }
    
    .card-2 {
        bottom: 40px;
        right: -30px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .card-label {
        font-size: 0.75rem;
    }
    
    .card-text {
        font-size: 0.875rem;
    }
    
    .footer-main {
        border-radius: 40px 40px 0 0;
        padding: 60px 0 0;
    }
    
    .footer-company {
        padding-bottom: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-icon i {
        font-size: 1.75rem;
    }
    
    .why-choose-card h3 {
        font-size: 1.25rem;
    }
    
    .why-choose-card p {
        font-size: 0.95rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.75rem;
    }
    
    /* .tabs-nav {
        gap: 0.4rem;
        padding: 0.3rem;
    } */
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .feature-tab-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-tab-title {
        font-size: 1.75rem;
    }
    
    .feature-tab-description {
        font-size: 0.95rem;
    }
    
    .testimonial-slider {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .testimonial-track {
        gap: 1.5rem;
        justify-content: flex-start;
    }
    
    .testimonial-slide {
        min-width: calc(100% - 2rem);
        flex-shrink: 0;
        width: calc(100% - 2rem);
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-controls {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        gap: 2.5rem;
    }
    
    .about-section .section-header {
        text-align: center;
    }

    .about-section .section-title {
        text-align: center;
    }
    
    .about-section .section-description {
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.75rem;
    }
    
    .stat-card-number {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .modern-navbar {
      padding: 0.5rem 0;
    }
    
    .hero-section {
        padding-top: 140px;
        padding-bottom: 50px;
        min-height: auto;
    }
    
    .hero-left {
        gap: 1.25rem;
    }
    
    .hero-glow {
        max-width: 250px;
        height: 250px;
    }
    
    .hero-image {
        border-width: 3px;
    }
    
    .floating-card {
        display: none;
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .card-1 {
        top: 20px;
        left: -20px;
    }
    
    .card-2 {
        bottom: 20px;
        right: -20px;
    }
    
    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .card-label {
        font-size: 0.625rem;
    }
    
    .card-text {
        font-size: 0.75rem;
    }
    
    .footer-main {
        border-radius: 30px 30px 0 0;
        padding: 40px 0 0;
    }
    
    .footer-company {
        padding-bottom: 30px;
    }
    
    .footer-desc {
        font-size: 14px;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .service-card {
        padding: 1.75rem;
    }
    
    .why-choose-card {
        padding: 1.75rem 1.25rem;
    }
    
    .why-choose-number {
        font-size: 2.5rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .why-choose-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .why-choose-icon i {
        font-size: 1.5rem;
    }
    
    .why-choose-card h3 {
        font-size: 1.1rem;
    }
    
    .why-choose-card p {
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .solution-title {
        font-size: 1.1rem;
    }
    
    .solution-description {
        font-size: 0.875rem;
    }
    
    .tabs-nav {
        border-radius: var(--radius-md);
        padding: 1.5rem;
    }
    
    .tab-btn {
        /* width: 100%; */
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-card-number {
        font-size: 2rem;
    }
    
    .stat-card-plus {
        font-size: 1.5rem;
    }
    
    .stat-card-label {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .scroll-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonial-slider {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .testimonial-track {
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .testimonial-slide {
        min-width: calc(100% - 1rem);
        flex-shrink: 0;
        width: calc(100% - 1rem);
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .testimonial-quote-icon {
        font-size: 1.75rem;
    }
    
    .testimonial-stars {
        margin-bottom: 1rem;
    }
    
    .testimonial-stars i {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-author {
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .testimonial-author-info h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-author-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-controls {
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .testimonial-dots {
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
    }
    
    .testimonial-dot {
        width: 7px;
        height: 7px;
    }
    
    .testimonial-dot.active {
        width: 18px;
    }
    
    .cta-wrapper {
        padding: 2.5rem 1rem;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-page-section {
    padding-top: 170px;
}

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 5, 9, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

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

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card p a.address-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.contact-info-card p a.address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

/* Contact Social Media Section */
.contact-social-section {
    margin: 3rem 0 4rem;
}

.contact-social-wrapper {
    background: rgba(255, 229, 230, 0.5);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-social-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 5, 9, 0.1);
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-social-wrapper p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-social-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-social-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 5, 9, 0.15);
    background: var(--white);
}

.contact-social-icon:hover i {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-social-icon:hover span {
    color: var(--primary-color);
}

/* ===================================
   BOOK DEMO SECTION
   =================================== */

.book-demo-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

.book-demo-section .section-subtitle,
.book-demo-section .section-title,
.book-demo-section .section-description {
    color: var(--white);
}

.book-demo-section .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
}

.book-demo-section .section-subtitle i {
    color: var(--primary-color);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Form Styles */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 5, 9, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 0;
}

.form-group.error .error-message {
    display: block;
}

.error-message:empty {
    display: none;
}

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

/* Form Actions */
.form-consent {
    margin: 2rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.consent-checkbox label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    user-select: none;
}

.consent-checkbox:hover label {
    color: var(--primary-color);
}

.consent-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
}

.consent-checkbox label a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.consent-checkbox.error input[type="checkbox"] {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.consent-checkbox .error-message {
    position: absolute;
    bottom: -20px;
    left: 28px;
    font-size: 0.85rem;
    color: #e74c3c;
    display: block;
}

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    /* width: 100%; */
    padding: 1.25rem 2rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 5, 9, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 5, 9, 0.4);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    gap: 1rem;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-message h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

.error-message-box i {
    color: #e74c3c;
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 2rem;
}

.map-container iframe {
    display: block;
    border: none;
}

.map-actions {
    text-align: center;
    margin-top: 2rem;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 5, 9, 0.3);
}

.map-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 5, 9, 0.4);
}

/* ===================================
   CONTACT PAGE RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .contact-page-section {
        padding-top: 150px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding-top: 130px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-social-section {
        margin: 2rem 0 3rem;
    }
    
    .contact-social-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-social-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .contact-social-wrapper p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-social-icons {
        gap: 1rem;
    }
    
    .contact-social-icon {
        padding: 1rem 1.25rem;
        min-width: 90px;
    }
    
    .contact-social-icon i {
        font-size: 1.5rem;
    }
    
    .contact-social-icon span {
        font-size: 0.8rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding-top: 130px;
    }
}

/* ===================================
   ABOUT PAGE SECTION
   =================================== */

.about-page-section {
    padding-top: 170px;
}

.about-hero-wrapper {
    display: flex;
    flex-direction: column;
}

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

.about-hero-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 5, 9, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 100px rgba(255, 5, 9, 0.25);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 5, 9, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-team-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 4px);
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

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

/* ===================================
   STATS COUNTER SECTION
   =================================== */

.stats-counter-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-counter-wrapper {
    text-align: center;
}

.stats-counter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stats-counter-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stats-number {
    display: inline-block;
}

.stats-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stats-counter-label {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* ===================================
   MISSION & VISION SECTION
   =================================== */

.mission-vision-section {
    padding: 80px 0;
    background: var(--white);
}

.mission-vision-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-vision-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 5, 9, 0.1);
    transform: translateY(-5px);
}

.mission-vision-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 1.5rem 0;
}

.mission-vision-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   FOUNDER'S MESSAGE SECTION
   =================================== */

.founder-message-section {
    padding: 20px 0;
}

.founder-message-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.founder-message-content {
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 2rem;
}

.founder-message-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--dark-gray);
    font-style: italic;
    margin: 0 0 2.5rem 0;
    position: relative;
}

.founder-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.founder-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.founder-company {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===================================
   MARQUEE VALUES SECTION
   =================================== */

.marquee-values-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #14181b, #0b0b0a);
    /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); */
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 4rem;
}

.marquee-text {
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(180deg, #cccccc, #666666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   CORE VALUES SECTION
   =================================== */

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

.core-value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
}

.core-value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.core-value-card:hover::after {
    opacity: 0.05;
}

.core-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 5, 9, 0.2);
}

.cv-icon-circle {
    width: 90px;
    height: 90px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.core-value-card:hover .cv-icon-circle {
    background: var(--gradient-primary);
    transform: rotateY(360deg);
}

.cv-icon-circle i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.core-value-card:hover .cv-icon-circle i {
    color: var(--white);
}

.core-value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.core-value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===================================
   ABOUT PAGE RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .about-page-section {
        padding-top: 150px;
    }
    
    .stats-counter-title {
        font-size: 2.25rem;
        margin-bottom: 3.5rem;
    }
    
    .stats-counter-grid {
        gap: 3rem;
    }
    
    .stats-counter-number {
        font-size: 3.5rem;
    }
    
    .stats-suffix {
        font-size: 2.5rem;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .book-demo-section {
        padding: 60px 0;
    }
    
    .mission-vision-card {
        padding: 2.5rem 2rem;
    }
    
    .founder-message-content {
        padding: 2.5rem 2rem;
    }
    
    .founder-message-text {
        font-size: 1.125rem;
    }
    
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding-top: 130px;
    }
    
    .stats-counter-section {
        padding: 60px 0;
    }
    
    .stats-counter-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .stats-counter-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-counter-number {
        font-size: 3rem;
    }
    
    .stats-suffix {
        font-size: 2.25rem;
    }
    
    .stats-counter-label {
        font-size: 1rem;
    }
    
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mission-vision-wrapper {
        gap: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-vision-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .mission-vision-card p {
        font-size: 1rem;
    }
    
    .founder-message-content {
        padding: 2rem 1.5rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-message-text {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .founder-name {
        font-size: 1rem;
    }
    
    .founder-company {
        font-size: 0.95rem;
    }
    
    .marquee-wrapper {
        padding: 1.5rem 0;
    }
    
    .marquee-text {
        font-size: 4.5rem;
    }
    
    .marquee-content {
        gap: 3rem;
    }
    
    .book-demo-section {
        padding: 50px 0;
    }
    
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .core-value-card {
        padding: 2rem 1.5rem;
    }
    
    .cv-icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .cv-icon-circle i {
        font-size: 2rem;
    }
    
    .core-value-card h3 {
        font-size: 1.35rem;
    }
    
    .core-value-card p {
        font-size: 0.95rem;
    }
}

/* ===================================
   SERVICE PAGE STYLES
   =================================== */

.service-page-section {
    padding-top: 170px;
    padding-bottom: 4rem;
}

.service-hero-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.service-hero-content {
    text-align: center;
}

.service-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.spec-item {
    background: var(--white);
    border: 2px solid rgba(255, 5, 9, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.spec-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 5, 9, 0.3);
}

.spec-content {
    text-align: left;
}

.spec-content h4 {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.spec-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

/* Service Detail Section */
.service-detail-section {
    padding: 6rem 0;
    position: relative;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-image {
    position: relative;
}

.service-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--white);
    transition: transform 0.4s ease;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(255, 5, 9, 0.3);
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.service-icon-large {
    font-size: 8rem;
    color: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 5, 9, 0.3);
    backdrop-filter: blur(10px);
}

.service-image-badge i {
    font-size: 1rem;
    color: var(--accent-green);
}

.service-detail-content {
    position: relative;
}

.service-benefits {
    margin-bottom: 2.5rem;
}

.service-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

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

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.15rem 0;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-uses {
    margin-bottom: 2.5rem;
}

.service-uses h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.uses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.use-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 5, 9, 0.2);
    transition: all 0.3s ease;
}

.use-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 5, 9, 0.3);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 5, 9, 0.3);
}

.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 5, 9, 0.4);
}

.service-cta-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-cta-btn:hover i {
    transform: translateX(5px);
}

/* Service Types Section */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-type-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-section .service-type-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 5, 9, 0.2);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.about-section .service-type-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.type-icon-transactional {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

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

.service-type-card:hover .type-icon-transactional {
    background: var(--accent-green);
    color: var(--white);
}

.service-type-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.about-section .service-type-card h3 {
    color: var(--white);
}

.service-type-card > p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-section .service-type-card > p {
    color: rgba(255, 255, 255, 0.8);
}

.type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.about-section .type-features li {
    color: rgba(255, 255, 255, 0.9);
}

.type-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-detail-wrapper {
        gap: 3rem;
    }
    
    .service-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-types-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-page-section {
        padding-top: 150px;
    }
    
    .service-hero-content .section-header:not(.center-align) {
        text-align: left;
    }
    
    .service-hero-content .section-header.center-align {
        text-align: center;
    }
    
    .service-hero-content .section-header.center-align .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-hero-content .section-header.center-align .section-title {
        text-align: center;
    }
    
    .service-hero-content .section-header.center-align .section-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-hero-content .section-title:not(.center-align *) {
        text-align: left;
    }
    
    .service-hero-content .section-header:not(.center-align) .section-description {
        text-align: left;
    }
    
    .service-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-image-container {
        min-height: 300px;
    }
    
    .service-hero-image {
        min-height: 300px;
    }
    
    .service-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-type-card {
        padding: 2rem;
    }
    
    .feature-tab-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-tab-content {
        text-align: center;
    }
    
    .feature-tab-title {
        font-size: 2rem;
    }
    
    .feature-tab-description {
        font-size: 1.05rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-page-section {
        padding-top: 130px;
    }
    
    .about-team-image {
        border-radius: var(--radius-md);
    }
    
    .stats-counter-section {
        padding: 50px 0;
    }
    
    .stats-counter-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
    
    .stats-counter-grid {
        gap: 2.5rem;
    }
    
    .stats-counter-number {
        font-size: 2.5rem;
    }
    
    .stats-suffix {
        font-size: 1.875rem;
    }
    
    .stats-counter-label {
        font-size: 0.95rem;
    }
    
    .marquee-wrapper {
        padding: 1.25rem 0;
    }
    
    .marquee-text {
        font-size: 3.5rem;
    }
    
    .marquee-content {
        gap: 2rem;
    }
    
    .service-page-section {
        padding-top: 130px;
    }
    
    .service-image-container {
        min-height: 250px;
    }
    
    .service-hero-image {
        min-height: 250px;
    }
    
    .service-type-card {
        padding: 1.5rem;
    }
    
    .service-type-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .feature-tab-title {
        font-size: 1.75rem;
    }
    
    .feature-tab-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   WHO'S WINNING SECTION
   =================================== */

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

.winning-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: left;
}

.winning-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(255, 5, 9, 0.1);
}

.winning-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.winning-icon {
    /* width: 50px; */
    height: 50px;
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    /* justify-content: center; */
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.winning-card:hover .winning-icon {
    color: var(--primary-color);
    transform: scale(1.05);
}

.winning-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-secondary);
}

.winning-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Winning Section */
@media (max-width: 1024px) {
    .winning-grid {
        gap: 1.5rem;
    }
    
    .winning-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .winning-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .winning-card {
        padding: 1.5rem;
    }
    
    .winning-card-header {
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .winning-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .winning-card {
        padding: 1.25rem;
    }
    
    .winning-card-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .winning-description {
        font-size: 0.875rem;
    }
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-works-wrapper {
    position: relative;
    margin-top: 3rem;
}

.how-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.how-works-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-works-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 5, 9, 0.15);
    border-color: var(--primary-color);
}

.step-number-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 5, 9, 0.4);
    border: 3px solid var(--white);
    z-index: 2;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0 1.5rem 0;
    position: relative;
    transition: all 0.4s ease;
}

.step-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
    z-index: 1;
}

.step-icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.step-icon-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.step-icon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.step-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.step-icon-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.step-icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.how-works-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-content-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
    font-family: var(--font-secondary);
}

.step-text {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.125rem;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.how-works-step:last-child .step-connector {
    display: none;
}

.how-works-step:nth-child(3n) .step-connector {
    display: none;
}

.how-works-footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.how-works-tagline {
    font-size: 1.25rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.how-works-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 5, 9, 0.3);
    transition: all 0.3s ease;
}

.how-works-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 5, 9, 0.4);
}

.how-works-cta i {
    transition: transform 0.3s ease;
}

.how-works-cta:hover i {
    transform: translateX(4px);
}

/* Responsive Styles for How It Works Section */
@media (max-width: 1024px) {
    .how-works-grid {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .how-works-step {
        padding: 1.75rem 1.25rem;
    }
    
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 1.25rem 0 1.25rem 0;
    }
    
    .step-icon-wrapper i {
        font-size: 2.25rem;
    }
    
    .step-title {
        font-size: 1.375rem;
    }
    
    .step-text {
        font-size: 0.95rem;
    }
    
    .step-connector {
        right: -1.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .how-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .how-works-step {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-icon-wrapper {
        width: 85px;
        height: 85px;
        margin: 1rem 0 1.5rem 0;
    }
    
    .step-icon-wrapper i {
        font-size: 2.25rem;
    }
    
    .step-title {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .how-works-tagline {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .how-works-wrapper {
        margin-top: 2rem;
    }
    
    .how-works-grid {
        gap: 1.5rem;
    }
    
    .how-works-step {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }
    
    .step-number-badge {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
        top: -12px;
    }
    
    .step-icon-wrapper {
        width: 75px;
        height: 75px;
        margin: 0.875rem 0 1.25rem 0;
        border-radius: 16px;
    }
    
    .step-icon-wrapper i {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .how-works-tagline {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .how-works-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   POLICY PAGES STYLES
   =================================== */

.policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
    font-family: var(--font-secondary);
    line-height: 1.3;
}

.policy-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 1.5rem 0 0.75rem 0;
    font-family: var(--font-secondary);
}

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

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
}

.policy-list li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-list li a:hover {
    text-decoration: underline;
}

.policy-list li strong {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Responsive Styles for Policy Pages */
@media (max-width: 1024px) {
    .policy-content {
        padding: 2.5rem;
    }
    
    .policy-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .policy-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .policy-heading {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .policy-subheading {
        font-size: 1.125rem;
        margin: 1.25rem 0 0.625rem 0;
    }
    
    .policy-text {
        font-size: 0.95rem;
    }
    
    .policy-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
        margin-bottom: 0.625rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .policy-section {
        margin-bottom: 1.75rem;
        padding-bottom: 1.25rem;
    }
    
    .policy-heading {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .policy-subheading {
        font-size: 1.05rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .policy-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .policy-list li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
        margin-bottom: 0.5rem;
    }
}
