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

body {
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure touch targets are at least 44x44px for mobile */
@media (max-width: 767px) {

    button,
    .btn,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Headings use Rubik */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rubik", sans-serif;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.logo-icon img {
    width: 100%;
}

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

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.2;
    margin-top: -2px;
}

.nav-links-container {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: "Jura", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, transform-origin 0s 0.3s;
}

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease, transform-origin 0s 0s;
}

.nav-link:not(:hover):not(.active)::after {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease, transform-origin 0s 0s;
}

/* Active state for home link - always show underline */
.nav-link.active {
    color: #ff6b6b;
}

.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-cta {
    display: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    height: 40px;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff4444 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.mobile-menu-toggle:hover {
    color: #ff6b6b;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile menu styles */
@media (max-width: 767px) {
    .nav-links-container {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10001;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links-container.mobile-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links-container {
        display: flex;
        gap: 0;
        align-items: stretch;
    }

    .nav-links-container .nav-link {
        display: block;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        min-height: 50px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .nav-links-container .nav-link:last-child {
        border-bottom: none;
    }

    .nav-links-container .nav-link:hover,
    .nav-links-container .nav-link.active {
        color: #ff6b6b;
        background: rgba(255, 107, 107, 0.05);
        padding-left: 1.5rem;
    }

    .nav-links-container .nav-link::after {
        display: none;
    }

    .nav-cta {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10002;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-cta.mobile-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-cta .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 10000;
        position: relative;
    }

    .hamburger-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        position: relative;
    }

    .hamburger-line {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-toggle.active .hamburger-line {
        background: #ff6b6b;
    }

    /* Overlay when menu is open - should be behind menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Desktop navigation */
@media (min-width: 768px) {
    .nav-links-container {
        display: flex;
    }

    .nav-cta {
        display: block;
    }

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 780px;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 1rem 2rem;
    width: 100%;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b6b;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-family: "Rubik", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.text-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Hero section specific text colors */
.hero .text-foreground {
    color: white;
    display: block;
}

.hero-title .text-foreground {
    color: white;
}

.hero-description {
    font-family: "Nunito", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    height: 44px;
    border-radius: 8px;
    font-family: "Nunito", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff4444 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 107, 107, 0.05);
    border-color: rgba(255, 107, 107, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--stat-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:nth-child(1) {
    --stat-color: #ff6b6b;
}

.stat-item:nth-child(2) {
    --stat-color: #4ecdc4;
}

.stat-item:nth-child(3) {
    --stat-color: #ffd93d;
}

.stat-number {
    font-family: "Rubik", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--stat-color), var(--stat-color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    position: relative;
}

.stat-item:nth-child(1) .stat-number {
    --stat-color-secondary: #ff5252;
}

.stat-item:nth-child(2) .stat-number {
    --stat-color: #4ecdc4;
    --stat-color-secondary: #26a69a;
}

.stat-item:nth-child(3) .stat-number {
    --stat-color: #ffd93d;
    --stat-color-secondary: #ffc107;
}

.stat-label {
    font-family: "Nunito", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content-right {
    display: none;
}

.hero-visual {
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

#globe-container {
    width: 600px;
    height: 600px;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

#globe-container canvas {
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    background: transparent !important;
    max-width: 100%;
    max-height: 100%;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

/* Fade in animation */
.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Animation delay classes */
.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

.animate-delay-800 {
    animation-delay: 0.8s;
}

@keyframes pulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

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

    .hero-title {
        font-size: 3rem;
        text-align: left;
    }

    .hero-description {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-stats {
        text-align: left;
    }

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

    .hero-content-right {
        display: block;
    }
}

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

    .hero-description {
        font-size: 1.125rem;
    }

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

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

/* Features/About Section */
.features {
    padding: 80px 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #eef1f5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Global utility classes */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-12 {
    gap: 3rem;
}

.flex-col {
    flex-direction: column;
}

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

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

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.max-w-3xl {
    max-width: 48rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.inline-flex {
    display: inline-flex;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.w-14 {
    width: 3.5rem;
}

.h-14 {
    height: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.-mt-1 {
    margin-top: -0.25rem;
}

/* Responsive grid utilities */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:text-left {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:col-span-1 {
        grid-column: span 1;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    width: 100%;
}

.about-cards-section {
    width: 100%;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(26, 29, 94, 0.1);
    border: 1px solid rgba(26, 29, 94, 0.2);
    margin-bottom: 1.5rem;
}

.about-badge span {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1d5e;
}

.about-title {
    font-family: "Rubik", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1d5e;
    line-height: 1.2;
}

.about-text {
    font-family: "Nunito", sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #CC8941;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-item span {
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(26, 29, 94, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.25) 0%, rgba(204, 137, 65, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-card-icon svg {
    width: 28px;
    height: 28px;
    color: #CC8941;
}

.about-card-icon.accent-icon {
    background: linear-gradient(135deg, rgba(26, 29, 94, 0.1) 0%, rgba(46, 48, 146, 0.1) 100%);
}

.about-card-icon.accent-icon svg {
    color: #1a1d5e;
}

.about-card-title {
    font-family: "Rubik", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1d5e;
    margin-bottom: 0.5rem;
}

.about-card-text {
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

.about-card-full {
    grid-column: 1;
}

/* Desktop styles */
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-title {
        font-size: 3rem;
    }

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

    .about-card-full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 640px) {
    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-card-full {
        grid-column: 1 / -1;
    }
}

/* Services Section */
.how-it-works {
    padding: 80px 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #eef1f5 100%);
}

.services-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(26, 29, 94, 0.1);
    border: 1px solid rgba(26, 29, 94, 0.2);
    margin-bottom: 1.5rem;
}

.services-badge span {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1d5e;
}

.services-title {
    font-family: "Rubik", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1d5e;
    line-height: 1.2;
}

.services-description {
    font-family: "Nunito", sans-serif;
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(26, 29, 94, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-glow-primary {
    background: #1a1d5e;
}

.service-glow-accent {
    background: #CC8941;
}

.service-card:hover .service-glow {
    opacity: 0.1;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.25) 0%, rgba(204, 137, 65, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: #CC8941;
}

.service-icon.accent-icon {
    background: linear-gradient(135deg, rgba(26, 29, 94, 0.1) 0%, rgba(46, 48, 146, 0.1) 100%);
}

.service-icon.accent-icon svg {
    color: #1a1d5e;
}

.service-card-title {
    font-family: "Rubik", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1d5e;
    margin-bottom: 0.75rem;
}

.service-card-text {
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
}

.service-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a1d5e 0%, #2e3092 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card-line-accent {
    background: linear-gradient(90deg, #CC8941 0%, #F6D99A 100%);
}

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

.service-card-center {
    grid-column: 1;
}

/* Desktop styles for services */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card-center {
        grid-column: 2;
    }

    .services-title {
        font-size: 3rem;
    }

    .services-description {
        font-size: 1.25rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 80px 2rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.cta-rings-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
}

.cta-ring-1 {
    inset: 0;
    border-color: rgba(30, 58, 138, 0.5);
    animation: spin 20s linear infinite;
}

.cta-ring-2 {
    inset: 2rem;
    border-color: rgba(220, 38, 38, 0.4);
    animation: spin 15s linear infinite reverse;
}

.cta-ring-3 {
    inset: 4rem;
    border-color: rgba(246, 217, 154, 0.6);
    animation: spin 10s linear infinite;
}

.cta-ring-icon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-icon-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.cta-icon-accent {
    background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
}

.cta-icon-secondary {
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
}

.cta-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.cta-icon-secondary .cta-icon {
    color: #ffffff;
}

.cta-center-circle {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-center-content {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1rem;
}

.cta-center-title {
    font-family: "Rubik", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1d5e;
    margin: 0;
    line-height: 1.2;
}

.cta-center-amp {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    color: #1a1d5e;
    margin: 0.25rem 0;
}

.cta-center-subtitle {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    color: #2e3092;
    margin-top: 0.25rem;
}

.cta-content {
    width: 100%;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.cta-badge span {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

.cta-title {
    font-family: "Rubik", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.cta-description {
    font-family: "Nunito", sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 217, 154, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-feature-item:hover {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(246, 217, 154, 0.5);
    transform: translateY(-2px);
}

.cta-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-feature-icon svg {
    width: 20px;
    height: 20px;
    color: #1a1d5e;
}

.cta-feature-item span {
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Desktop styles for CTA */
@media (min-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

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

    .cta-description {
        font-size: 1.25rem;
    }

    .cta-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .cta-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Booking Portal Section */
.booking-portal-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef1f5 100%);
    padding: 80px 2rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-content {
    width: 100%;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    margin-bottom: 1.5rem;
}

.booking-icon {
    width: 16px;
    height: 16px;
    color: #1a1d5e;
}

.booking-badge span {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1d5e;
    color: #ff6b6b;
}

.booking-title {
    font-family: "Rubik", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1d5e;
    line-height: 1.2;
}

.booking-text {
    font-family: "Nunito", sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.booking-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.booking-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(78, 205, 196, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-feature-icon svg {
    width: 16px;
    height: 16px;
    color: #CC8941;
}

.booking-feature-item span {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    color: rgba(51, 51, 51, 0.9);
}

.booking-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 44px;
    padding: 0 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 100%);
    color: white;
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-demo-btn:hover {
    background: linear-gradient(135deg, #2e3092 0%, #1a1d5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 29, 94, 0.4);
}

.booking-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.booking-card {
    position: relative;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
}

.booking-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-dots {
    display: flex;
    gap: 0.5rem;
}

.booking-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: rgba(26, 29, 94, 0.7);
}

.dot-teal {
    background: rgba(204, 137, 65, 0.7);
}

.dot-gray {
    background: rgba(246, 217, 154, 0.7);
}

.booking-url {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

.booking-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-tabs {
    display: flex;
    gap: 0.5rem;
}

.booking-tab {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #f5f5f5;
    color: #666;
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-tab-active {
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 100%);
    color: white;
}

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

.booking-form-field {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1rem;
}

.booking-form-label {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.booking-form-value {
    font-family: "Rubik", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.booking-search-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-search-btn:hover {
    background: linear-gradient(135deg, #2e3092 0%, #1a1d5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 29, 94, 0.4);
}

.booking-badge-1,
.booking-badge-2 {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.booking-badge-1 {
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
    color: white;
}

.booking-badge-2 {
    bottom: -16px;
    left: -16px;
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 100%);
    color: white;
}

/* Desktop styles for booking portal */
@media (min-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .booking-title {
        font-size: 3rem;
    }

    .booking-text {
        font-size: 1.25rem;
    }

    .booking-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .booking-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cost Savings Section */
.cost-savings-section {
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 50%, #1a1d5e 100%);
    padding: 80px 2rem;
}

.cost-savings-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cost-savings-section .relative {
    position: relative;
}

.cost-savings-section .z-10 {
    z-index: 10;
}

.cost-savings-section .text-center {
    text-align: center;
}

.cost-savings-section .max-w-3xl {
    max-width: 48rem;
}

.cost-savings-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.cost-savings-section .mb-16 {
    margin-bottom: 4rem;
}

.cost-savings-section .inline-flex {
    display: inline-flex;
}

.cost-savings-section .items-center {
    align-items: center;
}

.cost-savings-section .justify-center {
    justify-content: center;
}

.cost-savings-section .gap-2 {
    gap: 0.5rem;
}

.cost-savings-section .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.cost-savings-section .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.cost-savings-section .rounded-full {
    border-radius: 9999px;
}

.cost-savings-section .bg-accent\/20 {
    background: rgba(246, 217, 154, 0.2);
}

.cost-savings-section .border {
    border-width: 1px;
}

.cost-savings-section .border-accent\/30 {
    border-color: rgba(246, 217, 154, 0.4);
}

.cost-savings-section .mb-6 {
    margin-bottom: 1.5rem;
}

.cost-savings-section .w-4 {
    width: 1rem;
}

.cost-savings-section .h-4 {
    height: 1rem;
}

.cost-savings-section .text-accent {
    color: #F6D99A;
}

.cost-savings-section .text-sm {
    font-size: 0.875rem;
}

.cost-savings-section .font-medium {
    font-weight: 500;
}

.cost-savings-section .text-3xl {
    font-size: 1.875rem;
}

.cost-savings-section .text-4xl {
    font-size: 2.25rem;
}

.cost-savings-section .text-5xl {
    font-size: 3rem;
}

/* Responsive text sizes for headings */
@media (min-width: 768px) {

    .cost-savings-section h2.md\:text-4xl,
    .cost-savings-section .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {

    .cost-savings-section h2.lg\:text-5xl,
    .cost-savings-section .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1.2;
    }
}

.cost-savings-section .font-bold {
    font-weight: 700;
}

.cost-savings-section .text-foreground {
    color: #ffffff;
}

/* Heading styles */
.cost-savings-section h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.cost-savings-section h2.mb-6 {
    margin-bottom: 1.5rem;
}

.cost-savings-section .text-lg {
    font-size: 1.125rem;
}

.cost-savings-section .text-muted-foreground {
    color: rgba(255, 255, 255, 0.8);
}

.cost-savings-section .grid {
    display: grid;
}

.cost-savings-section .gap-6 {
    gap: 1.5rem;
}

.cost-savings-section .group {
    position: relative;
}

.cost-savings-section .bg-white\/90 {
    background: rgba(255, 255, 255, 0.95);
}

.cost-savings-section .backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cost-savings-section .rounded-2xl {
    border-radius: 1rem;
}

.cost-savings-section .p-8 {
    padding: 2rem;
}

.cost-savings-section .border-primary\/10 {
    border-color: rgba(26, 29, 94, 0.15);
}

.cost-savings-section .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cost-savings-section .hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cost-savings-section .transition-all {
    transition-property: all;
}

.cost-savings-section .duration-300 {
    transition-duration: 300ms;
}

.cost-savings-section .overflow-hidden {
    overflow: hidden;
}

.cost-savings-section .h-full {
    height: 100%;
}

.cost-savings-section .flex {
    display: flex;
}

.cost-savings-section .flex-col {
    flex-direction: column;
}

.cost-savings-section .absolute {
    position: absolute;
}

.cost-savings-section .top-0 {
    top: 0;
}

.cost-savings-section .left-0 {
    left: 0;
}

.cost-savings-section .right-0 {
    right: 0;
}

.cost-savings-section .h-1 {
    height: 0.25rem;
}

.cost-savings-section .bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.cost-savings-section .from-primary {
    --tw-gradient-from: #1a1d5e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 29, 94, 0));
}

.cost-savings-section .via-accent {
    --tw-gradient-stops: var(--tw-gradient-from), #F6D99A, var(--tw-gradient-to, rgba(246, 217, 154, 0));
}

.cost-savings-section .to-primary {
    --tw-gradient-to: #1a1d5e;
}

.cost-savings-section .transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}


.cost-savings-section .transition-transform {
    transition-property: transform;
}

.cost-savings-section .duration-500 {
    transition-duration: 500ms;
}

.cost-savings-section .w-14 {
    width: 3.5rem;
}

.cost-savings-section .h-14 {
    height: 3.5rem;
}

.cost-savings-section .rounded-full {
    border-radius: 9999px;
}

.cost-savings-section .bg-accent\/10 {
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.15) 0%, rgba(204, 137, 65, 0.15) 100%);
}

/* Icon container flexbox centering */
.cost-savings-section .w-14.h-14.rounded-full {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cost-savings-section .mb-5 {
    margin-bottom: 1.25rem;
}

.cost-savings-section .flex-shrink-0 {
    flex-shrink: 0;
}

.cost-savings-section .w-7 {
    width: 1.75rem;
}

.cost-savings-section .h-7 {
    height: 1.75rem;
}

.cost-savings-section .text-primary {
    color: #1a1d5e;
}

.cost-savings-section .mb-2 {
    margin-bottom: 0.5rem;
}

.cost-savings-section .text-gray-600 {
    color: #666;
}

.cost-savings-section .leading-relaxed {
    line-height: 1.625;
}

.cost-savings-section .mb-4 {
    margin-bottom: 1rem;
}

.cost-savings-section .flex-1 {
    flex: 1 1 0%;
}

.cost-savings-section .inline-flex {
    display: inline-flex;
}

.cost-savings-section .gap-1 {
    gap: 0.25rem;
}

.cost-savings-section .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.cost-savings-section .py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.cost-savings-section .border-accent\/20 {
    border-color: rgba(204, 137, 65, 0.3);
}

.cost-savings-section .w-fit {
    width: fit-content;
}

.cost-savings-section .font-semibold {
    font-weight: 600;
}

/* Savings badge styling */
.cost-savings-section .savings-badge {
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 100%);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(26, 29, 94, 0.3);
}

.cost-savings-section .savings-badge span {
    color: #F6D99A !important;
    font-weight: 700;
    font-size: 0.9rem;
}

.cost-savings-section .mt-12 {
    margin-top: 3rem;
}

.cost-savings-section .gap-4 {
    gap: 1rem;
}

.cost-savings-section .px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.cost-savings-section .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cost-savings-section .from-secondary\/20 {
    --tw-gradient-from: rgba(246, 217, 154, 0.25);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 217, 154, 0));
}

.cost-savings-section .to-accent\/20 {
    --tw-gradient-to: rgba(204, 137, 65, 0.25);
}

.cost-savings-section .border-secondary\/30 {
    border-color: rgba(246, 217, 154, 0.5);
}

.cost-savings-section .text-2xl {
    font-size: 1.5rem;
}

/* Cost Savings Section - Gradient line animation fix */
.cost-savings-section .group>div.absolute.top-0[class*="scale-x-0"] {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms ease;
}

.cost-savings-section .group:hover>div.absolute.top-0[class*="scale-x-0"] {
    transform: scaleX(1);
}

/* Cost Savings Section Responsive */
@media (min-width: 768px) {
    .cost-savings-section .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .cost-savings-section .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef1f5 100%);
    padding: 80px 2rem;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.why-choose-section .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.why-choose-section .relative {
    position: relative;
}

.why-choose-section .z-10 {
    z-index: 10;
}

.why-choose-section .text-center {
    text-align: center;
}

.why-choose-section .max-w-3xl {
    max-width: 48rem;
}

.why-choose-section .mb-16 {
    margin-bottom: 4rem;
}

.why-choose-section .inline-flex {
    display: inline-flex;
}

.why-choose-section .items-center {
    align-items: center;
}

.why-choose-section .gap-2 {
    gap: 0.5rem;
}

.why-choose-section .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.why-choose-section .rounded-full {
    border-radius: 9999px;
}

.why-choose-section .bg-secondary\/20 {
    background: rgba(26, 29, 94, 0.1);
}

.why-choose-section .border {
    border-width: 1px;
    border-style: solid;
}

.why-choose-section .border-secondary\/30 {
    border-color: rgba(26, 29, 94, 0.2);
}

.why-choose-section .mb-6 {
    margin-bottom: 1.5rem;
}

.why-choose-section .text-sm {
    font-size: 0.875rem;
}

.why-choose-section .font-medium {
    font-weight: 500;
}

.why-choose-section .text-secondary {
    color: #1a1d5e;
}

.why-choose-section h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #1a1d5e;
    line-height: 1.2;
}

.why-choose-section .text-3xl {
    font-size: 1.875rem;
}

.why-choose-section .text-lg {
    font-size: 1.125rem;
}

.why-choose-section .text-muted-foreground {
    color: #666;
}

.why-choose-section .grid {
    display: grid;
}

.why-choose-section .gap-6 {
    gap: 1.5rem;
}

.why-choose-section .group {
    position: relative;
}

.why-choose-section .bg-white\/90 {
    background: rgba(255, 255, 255, 0.9);
}

.why-choose-section .backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.why-choose-section .rounded-xl {
    border-radius: 0.75rem;
}

.why-choose-section .p-6 {
    padding: 1.5rem;
}

.why-choose-section .border-primary\/10 {
    border-color: rgba(26, 29, 94, 0.1);
}

.why-choose-section .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.why-choose-section .hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.why-choose-section .transition-all {
    transition-property: all;
}

.why-choose-section .duration-300 {
    transition-duration: 300ms;
}

.why-choose-section .overflow-hidden {
    overflow: hidden;
}

.why-choose-section .h-full {
    height: 100%;
}

.why-choose-section .flex {
    display: flex;
}

.why-choose-section .flex-col {
    flex-direction: column;
}

.why-choose-section .w-12 {
    width: 3rem;
}

.why-choose-section .h-12 {
    height: 3rem;
}

.why-choose-section .rounded-lg {
    border-radius: 0.5rem;
}

.why-choose-section .justify-center {
    justify-content: center;
}

.why-choose-section .mb-4 {
    margin-bottom: 1rem;
}

.why-choose-section .flex-shrink-0 {
    flex-shrink: 0;
}

.why-choose-section .bg-primary\/10 {
    background: linear-gradient(135deg, rgba(26, 29, 94, 0.1) 0%, rgba(46, 48, 146, 0.1) 100%);
}

.why-choose-section .bg-accent\/10 {
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.2) 0%, rgba(204, 137, 65, 0.2) 100%);
}

.why-choose-section .w-6 {
    width: 1.5rem;
}

.why-choose-section .h-6 {
    height: 1.5rem;
}

.why-choose-section .text-primary {
    color: #1a1d5e;
}

.why-choose-section .text-accent {
    color: #CC8941;
}

.why-choose-section .flex-1 {
    flex: 1 1 0%;
}

.why-choose-section .text-base {
    font-size: 1rem;
}

.why-choose-section .font-bold {
    font-weight: 700;
}

.why-choose-section .mb-2 {
    margin-bottom: 0.5rem;
}

.why-choose-section .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.why-choose-section .text-gray-600 {
    color: #666;
}

.why-choose-section .leading-relaxed {
    line-height: 1.625;
}

.why-choose-section .absolute {
    position: absolute;
}

.why-choose-section .bottom-0 {
    bottom: 0;
}

.why-choose-section .left-0 {
    left: 0;
}

.why-choose-section .w-full {
    width: 100%;
}

.why-choose-section .h-1 {
    height: 0.25rem;
}

.why-choose-section .transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.why-choose-section .scale-x-0 {
    transform: scaleX(0);
}

.why-choose-section .group:hover .scale-x-100 {
    transform: scaleX(1);
}

.why-choose-section .transition-transform {
    transition-property: transform;
}

.why-choose-section .origin-left {
    transform-origin: left;
}

.why-choose-section .bg-primary {
    background: linear-gradient(90deg, #1a1d5e 0%, #2e3092 100%);
}

.why-choose-section .bg-accent {
    background: linear-gradient(90deg, #CC8941 0%, #F6D99A 100%);
}

/* Why Choose Section - Bottom line animation */
.why-choose-section .group>.absolute.bottom-0.h-1 {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms ease;
}

.why-choose-section .group:hover>.absolute.bottom-0.h-1 {
    transform: scaleX(1);
}

/* Why Choose Section Responsive */
@media (min-width: 640px) {
    .why-choose-section .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .why-choose-section .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .why-choose-section .xl\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {

    .why-choose-section h2.md\:text-4xl,
    .why-choose-section .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {

    .why-choose-section h2.lg\:text-5xl,
    .why-choose-section .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1.2;
    }
}

/* Global Footprint Section */
.global-footprint-section {
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 50%, #1a1d5e 100%);
    padding: 80px 2rem;
}

.global-footprint-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.global-footprint-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.global-footprint-section .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.global-footprint-section .relative {
    position: relative;
}

.global-footprint-section .z-10 {
    z-index: 10;
}

.global-footprint-section .text-center {
    text-align: center;
}

.global-footprint-section .max-w-3xl {
    max-width: 48rem;
}

.global-footprint-section .mb-16 {
    margin-bottom: 4rem;
}

.global-footprint-section .inline-flex {
    display: inline-flex;
}

.global-footprint-section .items-center {
    align-items: center;
}

.global-footprint-section .gap-2 {
    gap: 0.5rem;
}

.global-footprint-section .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.global-footprint-section .rounded-full {
    border-radius: 9999px;
}

.global-footprint-section .bg-secondary\/20 {
    background: rgba(246, 217, 154, 0.2);
}

.global-footprint-section .border {
    border-width: 1px;
    border-style: solid;
}

.global-footprint-section .border-secondary\/30 {
    border-color: rgba(246, 217, 154, 0.4);
}

.global-footprint-section .mb-6 {
    margin-bottom: 1.5rem;
}

.global-footprint-section .w-4 {
    width: 1rem;
}

.global-footprint-section .h-4 {
    height: 1rem;
}

.global-footprint-section .text-secondary {
    color: #F6D99A;
}

.global-footprint-section .text-sm {
    font-size: 0.875rem;
}

.global-footprint-section .font-medium {
    font-weight: 500;
}

.global-footprint-section h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.global-footprint-section .text-3xl {
    font-size: 1.875rem;
}

.global-footprint-section .text-lg {
    font-size: 1.125rem;
}

.global-footprint-section .text-muted-foreground {
    color: rgba(255, 255, 255, 0.8);
}

.global-footprint-section .grid {
    display: grid;
}

.global-footprint-section .gap-6 {
    gap: 1.5rem;
}

.global-footprint-section .group {
    position: relative;
}

.global-footprint-section .bg-white\/90 {
    background: rgba(255, 255, 255, 0.95);
}

.global-footprint-section .backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.global-footprint-section .rounded-2xl {
    border-radius: 1rem;
}

.global-footprint-section .p-8 {
    padding: 2rem;
}

.global-footprint-section .border-primary\/10 {
    border-color: rgba(26, 29, 94, 0.15);
}

.global-footprint-section .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.global-footprint-section .hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.global-footprint-section .transition-all {
    transition-property: all;
}

.global-footprint-section .duration-300 {
    transition-duration: 300ms;
}

.global-footprint-section .overflow-hidden {
    overflow: hidden;
}

.global-footprint-section .absolute {
    position: absolute;
}

.global-footprint-section .top-4 {
    top: 1rem;
}

.global-footprint-section .right-4 {
    right: 1rem;
}

.global-footprint-section .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.global-footprint-section .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.global-footprint-section .bg-primary\/10 {
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.15) 0%, rgba(204, 137, 65, 0.15) 100%);
}

.global-footprint-section .border-primary\/20 {
    border-color: rgba(204, 137, 65, 0.3);
}

.global-footprint-section .text-xs {
    font-size: 0.75rem;
}

.global-footprint-section .text-primary {
    color: #1a1d5e;
}

.global-footprint-section .w-16 {
    width: 4rem;
}

.global-footprint-section .h-16 {
    height: 4rem;
}

/* Icon container flexbox centering */
.global-footprint-section .w-16.h-16.rounded-xl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-footprint-section .rounded-xl {
    border-radius: 0.75rem;
}

.global-footprint-section .bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.global-footprint-section .from-primary\/10 {
    --tw-gradient-from: rgba(246, 217, 154, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 217, 154, 0));
}

.global-footprint-section .to-accent\/10 {
    --tw-gradient-to: rgba(204, 137, 65, 0.2);
}

.global-footprint-section .justify-center {
    justify-content: center;
}

.global-footprint-section .mb-6 {
    margin-bottom: 1.5rem;
}

.global-footprint-section .w-8 {
    width: 2rem;
}

.global-footprint-section .h-8 {
    height: 2rem;
}

.global-footprint-section .text-xl {
    font-size: 1.25rem;
}

.global-footprint-section .font-bold {
    font-weight: 700;
}

.global-footprint-section .mb-3 {
    margin-bottom: 0.75rem;
}

.global-footprint-section .text-gray-600 {
    color: #666;
}

.global-footprint-section .leading-relaxed {
    line-height: 1.625;
}

.global-footprint-section .-bottom-2 {
    bottom: -0.5rem;
}

.global-footprint-section .-right-2 {
    right: -0.5rem;
}

.global-footprint-section .w-24 {
    width: 6rem;
}

.global-footprint-section .h-24 {
    height: 6rem;
}

.global-footprint-section .bg-primary\/5 {
    background: rgba(26, 29, 94, 0.05);
}

.global-footprint-section .group:hover .bg-primary\/10 {
    background: rgba(26, 29, 94, 0.1);
}

.global-footprint-section .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.global-footprint-section .mt-16 {
    margin-top: 4rem;
}

.global-footprint-section .gap-3 {
    gap: 0.75rem;
}

.global-footprint-section .h-px {
    height: 1px;
}

.global-footprint-section .bg-border {
    background-color: rgba(246, 217, 154, 0.5);
}

/* Global footprint bottom text */
.global-footprint-section .mt-16 .text-muted-foreground {
    color: rgba(255, 255, 255, 0.7);
}

/* Global Footprint Section Responsive */
@media (min-width: 768px) {
    .global-footprint-section .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .global-footprint-section h2.md\:text-4xl,
    .global-footprint-section .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {
    .global-footprint-section .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .global-footprint-section h2.lg\:text-5xl,
    .global-footprint-section .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1.2;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef1f5 100%);
    padding: 80px 2rem;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.contact-section .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-section .relative {
    position: relative;
}

.contact-section .z-10 {
    z-index: 10;
}

.contact-section .text-center {
    text-align: center;
}

.contact-section .max-w-3xl {
    max-width: 48rem;
}

.contact-section .mb-16 {
    margin-bottom: 4rem;
}

.contact-section .inline-flex {
    display: inline-flex;
}

.contact-section .items-center {
    align-items: center;
}

.contact-section .gap-2 {
    gap: 0.5rem;
}

.contact-section .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.contact-section .rounded-full {
    border-radius: 9999px;
}

.contact-section .bg-primary\/10 {
    background: rgba(26, 29, 94, 0.1);
}

.contact-section .border {
    border-width: 1px;
    border-style: solid;
}

.contact-section .border-primary\/20 {
    border-color: rgba(26, 29, 94, 0.2);
}

.contact-section .mb-6 {
    margin-bottom: 1.5rem;
}

.contact-section .w-4 {
    width: 1rem;
}

.contact-section .h-4 {
    height: 1rem;
}

.contact-section .text-primary {
    color: #1a1d5e;
}

.contact-section .text-sm {
    font-size: 0.875rem;
}

.contact-section .font-medium {
    font-weight: 500;
}

.contact-section h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #1a1d5e;
    line-height: 1.2;
}

.contact-section .text-3xl {
    font-size: 1.875rem;
}

.contact-section .text-lg {
    font-size: 1.125rem;
}

.contact-section .text-muted-foreground {
    color: #666;
}

.contact-section .grid {
    display: grid;
}

.contact-section .gap-12 {
    gap: 3rem;
}

.contact-section .items-stretch {
    align-items: stretch;
}

.contact-section .flex {
    display: flex;
}

.contact-section .flex-col {
    flex-direction: column;
}

.contact-section h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #1a1d5e;
}

.contact-section .text-2xl {
    font-size: 1.5rem;
}

.contact-section .mb-8 {
    margin-bottom: 2rem;
}

.contact-section .space-y-6>*+* {
    margin-top: 1.5rem;
}

.contact-section .flex-1 {
    flex: 1 1 0%;
}

.contact-section .bg-white\/90 {
    background: rgba(255, 255, 255, 0.95);
}

.contact-section .backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-section .rounded-xl {
    border-radius: 0.75rem;
}

.contact-section .p-6 {
    padding: 1.5rem;
}

.contact-section .border-primary\/10 {
    border-color: rgba(26, 29, 94, 0.1);
}

.contact-section .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-section .hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-section .transition-all {
    transition-property: all;
}

.contact-section .duration-300 {
    transition-duration: 300ms;
}

.contact-section .items-start {
    align-items: flex-start;
}

.contact-section .gap-4 {
    gap: 1rem;
}

.contact-section .w-14 {
    width: 3.5rem;
}

.contact-section .h-14 {
    height: 3.5rem;
}

.contact-section .rounded-full {
    border-radius: 9999px;
}

.contact-section .bg-primary\/10 {
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.2) 0%, rgba(204, 137, 65, 0.2) 100%);
}

.contact-section .justify-center {
    justify-content: center;
}

.contact-section .flex-shrink-0 {
    flex-shrink: 0;
}

/* Icon container centering */
.contact-section .w-14.h-14.rounded-full {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section .w-7 {
    width: 1.75rem;
}

.contact-section .h-7 {
    height: 1.75rem;
}

.contact-section h4 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #1a1d5e;
}

.contact-section .text-accent {
    color: #CC8941;
}

/* Contact section icon colors */
.contact-section .w-7.h-7.text-primary,
.contact-section .w-5.h-5.text-primary,
.contact-section .w-4.h-4.text-primary {
    color: #CC8941;
}

.contact-section .mb-3 {
    margin-bottom: 0.75rem;
}

.contact-section .space-y-2>*+* {
    margin-top: 0.5rem;
}

.contact-section a {
    text-decoration: none;
    color: inherit;
}

.contact-section .text-gray-600 {
    color: #666;
}

.contact-section .hover\:text-primary:hover {
    color: #CC8941;
}

.contact-section .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.contact-section .mt-auto {
    margin-top: auto;
}

.contact-section .mb-4 {
    margin-bottom: 1rem;
}

.contact-section .space-y-3>*+* {
    margin-top: 0.75rem;
}

.contact-section .gap-3 {
    gap: 0.75rem;
}

.contact-section .w-5 {
    width: 1.25rem;
}

.contact-section .h-5 {
    height: 1.25rem;
}

.contact-section .mt-0\.5 {
    margin-top: 0.125rem;
}

.contact-section .rounded-2xl {
    border-radius: 1rem;
}

.contact-section .p-8 {
    padding: 2rem;
}

.contact-section .space-y-6>*+* {
    margin-top: 1.5rem;
}

.contact-section form {
    display: flex;
    flex-direction: column;
}

.contact-section .sm\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contact-section .gap-4 {
    gap: 1rem;
}

.contact-section label {
    display: block;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    color: #1a1d5e;
    margin-bottom: 0.5rem;
}

.contact-section .relative {
    position: relative;
}

.contact-section .absolute {
    position: absolute;
}

.contact-section .left-3 {
    left: 0.75rem;
}

.contact-section .top-1\/2 {
    top: 50%;
}

.contact-section .-translate-y-1\/2 {
    transform: translateY(-50%);
}

.contact-section input,
.contact-section textarea {
    font-family: "Nunito", sans-serif;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: white;
    color: #333;
    transition: all 0.2s;
}

.contact-section input:focus,
.contact-section textarea:focus {
    outline: none;
    border-color: #1a1d5e;
    box-shadow: 0 0 0 2px rgba(26, 29, 94, 0.1);
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #999;
}

.contact-section .h-10 {
    height: 2.5rem;
}

.contact-section .w-full {
    width: 100%;
}

.contact-section .rounded-md {
    border-radius: 0.375rem;
}

.contact-section .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.contact-section .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.contact-section .text-base {
    font-size: 1rem;
}

.contact-section .pl-10 {
    padding-left: 2.5rem;
}

.contact-section .bg-background {
    background: white;
}

.contact-section .border-border\/50 {
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-section textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-section .pt-2 {
    padding-top: 0.5rem;
}

.contact-section button {
    font-family: "Nunito", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    padding: 0 2rem;
    border-radius: 0.375rem;
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 100%);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.contact-section button:hover {
    background: linear-gradient(135deg, #2e3092 0%, #1a1d5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 29, 94, 0.4);
}

.contact-section button:active {
    transform: translateY(0);
}

.contact-section .ml-2 {
    margin-left: 0.5rem;
}

/* Contact Section Responsive */
@media (min-width: 640px) {
    .contact-section .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {

    .contact-section h2.md\:text-4xl,
    .contact-section .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {
    .contact-section .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-section h2.lg\:text-5xl,
    .contact-section .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1.2;
    }
}

/* Footer */
footer {
    background: #2c2c2c !important;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    color: #ffffff;
}

/* Global card background */
.bg-card {
    background: white;
}

footer,
footer.bg-card {
    background: #2c2c2c !important;
}

footer .border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

/* Global border utilities */
.border-border {
    border-color: rgba(0, 0, 0, 0.1);
}

.border-border\/50 {
    border-color: rgba(0, 0, 0, 0.05);
}

footer .border-border {
    border-color: rgba(255, 255, 255, 0.2);
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

footer .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

footer .py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

footer .grid {
    display: grid;
}

footer .gap-12 {
    gap: 3rem;
}

footer .lg\:col-span-1 {
    grid-column: span 1;
}

footer .flex {
    display: flex;
}

footer .items-center {
    align-items: center;
}

footer .gap-2 {
    gap: 0.5rem;
}

footer .mb-6 {
    margin-bottom: 1.5rem;
}

footer .w-10 {
    width: 2.5rem;
}

footer .h-10 {
    height: 2.5rem;
}

footer .rounded-lg {
    border-radius: 0.5rem;
}

footer .bg-secondary {
    background: #ff6b6b;
}

/* Secondary color utilities - maps to primary color */
.bg-secondary {
    background: #ff6b6b;
}

.text-secondary {
    color: #ff6b6b;
}

.bg-secondary\/20 {
    background: rgba(255, 107, 107, 0.2);
}

.bg-secondary\/30 {
    background: rgba(255, 107, 107, 0.3);
}

.border-secondary\/30 {
    border-color: rgba(255, 107, 107, 0.3);
}

.border-secondary\/20 {
    border-color: rgba(255, 107, 107, 0.2);
}

.text-secondary\/80 {
    color: rgba(255, 107, 107, 0.8);
}

.from-secondary\/20 {
    --tw-gradient-from: rgba(255, 107, 107, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 107, 107, 0));
}

.to-secondary\/20 {
    --tw-gradient-to: rgba(255, 107, 107, 0.2);
}

.text-secondary-foreground {
    color: #ffffff;
}

/* Global text color utilities */
.text-foreground {
    color: #333;
}

/* Override for hero section */
.hero .text-foreground {
    color: white;
}

.text-muted-foreground {
    color: #666;
}

/* Footer specific text colors (dark background) */
footer .text-foreground {
    color: #ffffff;
}

footer .text-muted-foreground {
    color: #cccccc;
}

footer .justify-center {
    justify-content: center;
}

/* Footer logo icon centering */
footer .w-10.h-10.rounded-lg {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .w-6 {
    width: 1.5rem;
}

footer .h-6 {
    height: 1.5rem;
}

footer .text-secondary-foreground {
    color: white;
}

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

footer .text-xl {
    font-size: 1.25rem;
}

footer .font-bold {
    font-weight: 700;
}

footer .text-foreground {
    color: #ffffff;
}

footer .text-xs {
    font-size: 0.75rem;
}

footer .text-muted-foreground {
    color: #cccccc;
}

footer .-mt-1 {
    margin-top: -0.25rem;
}

footer a {
    text-decoration: none;
    color: inherit;
}

footer .text-secondary {
    color: #ff6b6b;
}

footer .hover\:text-secondary\/80:hover {
    color: rgba(255, 107, 107, 0.8);
}

footer .font-medium {
    font-weight: 500;
}

footer .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

footer h4 {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #ffffff;
}

footer .text-lg {
    font-size: 1.125rem;
}

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

footer .space-y-3>*+* {
    margin-top: 0.75rem;
}

footer .space-y-4>*+* {
    margin-top: 1rem;
}

footer .hover\:text-foreground:hover {
    color: #ffffff;
}

footer a.hover\:text-foreground:hover {
    color: #ffffff;
}

footer .hover\:text-primary:hover {
    color: #ff6b6b;
}

/* Footer navigation links with same hover animation as header */
.footer-nav-link {
    text-decoration: none;
    color: #cccccc;
    font-family: "Jura", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, transform-origin 0s 0.3s;
}

.footer-nav-link:hover {
    color: #F6D99A;
}

.footer-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease, transform-origin 0s 0s;
}

.footer-nav-link:not(:hover)::after {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease, transform-origin 0s 0s;
}

footer .items-start {
    align-items: flex-start;
}

footer .gap-3 {
    gap: 0.75rem;
}

footer .w-5 {
    width: 1.25rem;
}

footer .h-5 {
    height: 1.25rem;
}

footer .mt-0\.5 {
    margin-top: 0.125rem;
}

footer .mt-6 {
    margin-top: 1.5rem;
}

footer .gap-4 {
    gap: 1rem;
}

/* Global background utilities */
.bg-muted {
    background: rgba(0, 0, 0, 0.05);
}

footer .bg-muted {
    background: rgba(255, 255, 255, 0.15);
}

footer .hover\:bg-secondary:hover {
    background: #ff6b6b;
}

footer .hover\:text-secondary-foreground:hover {
    color: #ffffff;
}

footer .text-muted-foreground.hover\:text-secondary-foreground:hover {
    color: #ffffff;
}

footer .py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

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

footer .justify-between {
    justify-content: space-between;
}

footer .text-center {
    text-align: center;
}

footer .text-sm {
    font-size: 0.875rem;
}

/* Footer Responsive */
@media (min-width: 768px) {
    footer .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    footer .md\:flex-row {
        flex-direction: row;
    }

    footer .md\:text-left {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    footer .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Mobile First - Base styles for mobile (320px+) */
@media (max-width: 767px) {

    /* Header & Navigation */
    .nav-wrapper {
        padding: 0 1rem;
        height: 70px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }



    header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 99999;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 6rem 1rem 3rem;
    }

    .hero-container {
        padding: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1.5rem;
        margin-top: 2rem;
    }

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

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

    /* About Section */
    .features {
        padding: 60px 1rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Services Section */
    .how-it-works {
        padding: 60px 1rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 1rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-description {
        font-size: 1rem;
    }

    .cta-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cta-visual {
        min-height: 300px;
    }

    .cta-rings-container {
        max-width: 300px;
        min-width: 250px;
    }

    /* Booking Portal */
    .booking-portal-section {
        padding: 60px 1rem;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-title {
        font-size: 1.75rem;
    }

    .booking-text {
        font-size: 1rem;
    }

    .booking-features-grid {
        grid-template-columns: 1fr;
    }

    /* Cost Savings */
    .cost-savings-section {
        padding: 60px 1rem;
    }

    .cost-savings-section .grid {
        grid-template-columns: 1fr;
    }

    .cost-savings-section h2 {
        font-size: 1.75rem;
    }

    /* Why Choose Us */
    .why-choose-section {
        padding: 60px 1rem;
    }

    .why-choose-section .grid {
        grid-template-columns: 1fr;
    }

    .why-choose-section h2 {
        font-size: 1.75rem;
    }

    /* Global Footprint */
    .global-footprint-section {
        padding: 60px 1rem;
    }

    .global-footprint-section .grid {
        grid-template-columns: 1fr;
    }

    .global-footprint-section h2 {
        font-size: 1.75rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 1rem;
    }

    .contact-section .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section h2 {
        font-size: 1.75rem;
    }

    .contact-section h3 {
        font-size: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 2rem;
    }

    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Section padding adjustments */
    .features,
    .how-it-works,
    .cta-section,
    .booking-portal-section,
    .cost-savings-section,
    .why-choose-section,
    .global-footprint-section,
    .contact-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Text size adjustments */
    .text-3xl {
        font-size: 1.5rem;
    }

    .text-4xl {
        font-size: 1.75rem;
    }

    .text-5xl {
        font-size: 2rem;
    }

    /* Spacing adjustments */
    .mb-16 {
        margin-bottom: 2rem;
    }

    .mb-8 {
        margin-bottom: 1.5rem;
    }

    .gap-12 {
        gap: 2rem;
    }

    /* Globe container */
    #globe-container {
        width: 400px;
        height: 400px;
        max-width: 100%;
    }

    .hero-content-right {
        display: none;
    }

    /* Form inputs */
    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Cards padding */
    .service-card,
    .about-card,
    .cost-savings-section .bg-white\/90,
    .why-choose-section .bg-white\/90,
    .global-footprint-section .bg-white\/90 {
        padding: 1.25rem;
    }

    /* Footer navigation */
    .footer-nav-link {
        font-size: 0.875rem;
        padding-bottom: 3px;
    }

    /* Section badges */
    .hero-badge,
    .about-badge,
    .services-badge,
    .cta-badge,
    .booking-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }

    /* Booking card */
    .booking-card {
        padding: 1.25rem;
    }

    /* Contact form */
    .contact-section form {
        gap: 1rem;
    }

    .contact-section input,
    .contact-section textarea {
        font-size: 16px;
        /* Prevents iOS zoom */
    }

    /* Stats section */
    .hero-stats {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* CTA rings smaller on mobile */
    .cta-center-content {
        width: 120px;
        height: 120px;
        padding: 0.75rem;
    }

    .cta-center-title {
        font-size: 1rem;
    }

    .cta-center-subtitle {
        font-size: 0.65rem;
    }

    /* Footer spacing */
    footer .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }

    img,
    svg,
    canvas {
        max-width: 100%;
        height: auto;
    }
}

/* Tablet Styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

    /* Hero Section */
    .hero {
        padding: 7rem 2rem 3rem;
    }

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

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* About Section */
    .features {
        padding: 70px 2rem;
    }

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

    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services */
    .how-it-works {
        padding: 70px 2rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cta-section {
        padding: 70px 2rem;
    }

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

    .cta-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Booking */
    .booking-portal-section {
        padding: 70px 2rem;
    }

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

    /* Cost Savings */
    .cost-savings-section {
        padding: 70px 2rem;
    }

    .cost-savings-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cost-savings-section h2 {
        font-size: 2.5rem;
    }

    /* Why Choose Us */
    .why-choose-section {
        padding: 70px 2rem;
    }

    .why-choose-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-section h2 {
        font-size: 2.5rem;
    }

    /* Global Footprint */
    .global-footprint-section {
        padding: 70px 2rem;
    }

    .global-footprint-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .global-footprint-section h2 {
        font-size: 2.5rem;
    }

    /* Contact */
    .contact-section {
        padding: 70px 2rem;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    /* Footer */
    footer {
        padding: 4rem 2rem 2rem;
    }

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

    /* Container */
    .container {
        padding: 0 2rem;
    }

    /* Hero grid for tablet */
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-right {
        display: block;
        margin-top: 2rem;
    }

    #globe-container {
        width: 500px;
        height: 500px;
    }

    /* Tablet specific adjustments */
    .hero-grid {
        gap: 2rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .cta-grid {
        gap: 3rem;
    }

    .booking-grid {
        gap: 3rem;
    }

    /* Tablet button sizes */
    .btn {
        padding: 0.875rem 1.75rem;
    }

    /* Tablet card padding */
    .service-card,
    .about-card {
        padding: 1.75rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .btn {
        font-size: 0.9375rem;
        padding: 0.75rem 1.25rem;
    }

    .about-title,
    .services-title,
    .cta-title,
    .booking-title,
    .cost-savings-section h2,
    .why-choose-section h2,
    .global-footprint-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .about-card {
        padding: 1.25rem;
    }

    .cta-rings-container {
        max-width: 250px;
        min-width: 200px;
    }

    .hero-stats {
        gap: 0.75rem;
    }

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

/* Large Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cost-savings-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Scroll animations */
.fade-in,
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible,
.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section animation wrapper */
.section-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Animate items within sections */
.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Stagger animation delays */
.animate-item:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-item:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-item:nth-child(3) {
    transition-delay: 0.3s;
}

.animate-item:nth-child(4) {
    transition-delay: 0.4s;
}

.animate-item:nth-child(5) {
    transition-delay: 0.5s;
}

.animate-item:nth-child(6) {
    transition-delay: 0.6s;
}

.animate-item:nth-child(7) {
    transition-delay: 0.7s;
}

.animate-item:nth-child(8) {
    transition-delay: 0.8s;
}

.animate-item:nth-child(9) {
    transition-delay: 0.9s;
}

.animate-item:nth-child(10) {
    transition-delay: 1s;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff4444 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {

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

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

/* Mobile responsive for scroll to top button */
@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   BRAND COLOR OVERRIDES (Sunglow logo colors)
   Primary: Deep Blue (#2E3092)
   Accent:  Warm Gold (#CC8941)
   ============================================ */

/* NOTE: use :root (not ::root) so CSS variables apply correctly */
:root {
    --color-primary: #2E3092;
    --color-primary-dark: #21246e;
    --color-accent: #CC8941;
    --color-accent-soft: #e1b06a;
}

/* Hero & main gradients */
.hero {
    background: linear-gradient(135deg, #1a1d5e 0%, var(--color-primary) 50%, #1a1d5e 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(204, 137, 65, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.text-gradient,
.logo-main {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-link::after {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.footer-nav-link::after {
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
}

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

.mobile-menu-toggle:hover {
    color: var(--color-primary);
}

/* Primary buttons & CTAs */
.cta-button,
.btn-primary,
.booking-search-btn,
.booking-demo-btn,
.contact-section button,
.scroll-to-top {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 4px 12px rgba(46, 48, 146, 0.35);
}

.cta-button:hover,
.btn-primary:hover,
.booking-search-btn:hover,
.booking-demo-btn:hover,
.contact-section button:hover,
.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #141853 100%);
    box-shadow: 0 6px 18px rgba(46, 48, 146, 0.45);
}

.btn-secondary {
    border-color: rgba(46, 48, 146, 0.4);
}

.btn-secondary:hover {
    background: rgba(46, 48, 146, 0.06);
    border-color: rgba(46, 48, 146, 0.6);
}

/* Badges & pills that used coral/teal */
.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(204, 137, 65, 0.4);
    backdrop-filter: blur(10px);
}

.booking-badge {
    background: rgba(26, 29, 94, 0.1);
    border-color: rgba(26, 29, 94, 0.2);
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-badge .badge-text {
    color: rgba(255, 255, 255, 0.95);
}

.booking-badge span {
    color: #1a1d5e;
}

.cta-badge span {
    color: #ffffff;
}

.badge-dot {
    background: var(--color-accent);
}

/* Icon chips & accent blocks */
.booking-feature-icon {
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.25) 0%, rgba(204, 137, 65, 0.25) 100%);
}

.cost-savings-section .w-14.h-14.rounded-full {
    background: linear-gradient(135deg, rgba(246, 217, 154, 0.2) 0%, rgba(204, 137, 65, 0.2) 100%);
}

.booking-feature-icon svg {
    color: #CC8941;
}

/* Global footprint icon colors */
.global-footprint-section .w-8.h-8.text-primary {
    color: #CC8941;
}

.global-footprint-section h3.text-primary {
    color: #1a1d5e;
}

.global-footprint-section .text-xs.text-primary {
    color: #CC8941;
}

/* Why Choose Section icon colors */
.why-choose-section .w-6.h-6.text-primary {
    color: #1a1d5e;
}

.why-choose-section .w-6.h-6.text-accent {
    color: #CC8941;
}

.cost-savings-section .w-7.h-7.text-accent {
    color: #CC8941;
}

/* CTA feature icons on red background */
.cta-feature-icon {
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
}

.cta-feature-icon svg {
    color: #1a1d5e;
}

/* Booking badge icon next to text – keep simple and high contrast */
.booking-icon {
    background: transparent;
    color: #1a1d5e;
}

/* Service & card accent lines */
.booking-badge-2 {
    background: linear-gradient(135deg, #1a1d5e 0%, #2e3092 100%);
}

.service-glow-primary {
    background: var(--color-primary);
}

.service-glow-accent,
.booking-badge-1 {
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
    color: #1a1d5e;
}

/* Other sections can use brand colors */
.stat-item:nth-child(1) {
    --stat-color: var(--color-primary);
}

.stat-item:nth-child(1) .stat-number {
    --stat-color-secondary: var(--color-primary-dark);
}

.stat-item:nth-child(2) {
    --stat-color: var(--color-accent);
}

.stat-item:nth-child(2) .stat-number {
    --stat-color-secondary: #b27332;
}

.stat-item:nth-child(3) {
    --stat-color: #f3c067;
}

.stat-item:nth-child(3) .stat-number {
    --stat-color-secondary: #e0a83a;
}

/* Hero stats - colorful theme matching brand palette */
/* Stat 1: Vibrant Coral/Orange */
.hero .stat-item:nth-child(1) {
    --stat-color: #FF6B6B;
}
.hero .stat-item:nth-child(1) .stat-number {
    --stat-color: #FF6B6B;
    --stat-color-secondary: #FF8E8E;
}
.hero .stat-item:nth-child(1)::before {
    background: linear-gradient(90deg, transparent, #FF6B6B, transparent);
}

/* Stat 2: Brand Gold/Amber */
.hero .stat-item:nth-child(2) {
    --stat-color: #F6D99A;
}
.hero .stat-item:nth-child(2) .stat-number {
    --stat-color: #F6D99A;
    --stat-color-secondary: #CC8941;
}
.hero .stat-item:nth-child(2)::before {
    background: linear-gradient(90deg, transparent, #CC8941, transparent);
}

/* Stat 3: Fresh Teal/Cyan */
.hero .stat-item:nth-child(3) {
    --stat-color: #4ECDC4;
}
.hero .stat-item:nth-child(3) .stat-number {
    --stat-color: #4ECDC4;
    --stat-color-secondary: #45B7AA;
}
.hero .stat-item:nth-child(3)::before {
    background: linear-gradient(90deg, transparent, #4ECDC4, transparent);
}

/* Secondary / "highlight" utility mappings to logo palette */
.bg-secondary,
footer .bg-secondary {
    background: var(--color-primary);
}

.bg-secondary\/20 {
    background: rgba(46, 48, 146, 0.2);
}

.bg-secondary\/30 {
    background: rgba(46, 48, 146, 0.3);
}

.border-secondary\/30,
.border-secondary\/20 {
    border-color: rgba(46, 48, 146, 0.3);
}

.from-secondary\/20 {
    --tw-gradient-from: rgba(46, 48, 146, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(46, 48, 146, 0));
}

.to-secondary\/20 {
    --tw-gradient-to: rgba(46, 48, 146, 0.2);
}

.text-secondary\/80 {
    color: rgba(46, 48, 146, 0.8);
}

/* Accent utilities to warm gold */
.text-accent {
    color: var(--color-accent);
}

.bg-accent\/20 {
    background: rgba(204, 137, 65, 0.2);
}

.border-accent\/30,
.border-accent\/20 {
    border-color: rgba(204, 137, 65, 0.3);
}

.bg-accent\/10 {
    background: rgba(204, 137, 65, 0.1);
}

/* CTA rings & center */
.cta-icon-primary,
.cta-icon-secondary {
    background: var(--color-primary);
}

.cta-icon-accent {
    background: var(--color-accent);
}

.cta-center-title {
    color: #1a1d5e;
}

.cta-center-subtitle {
    color: #2e3092;
}

/* ============================================
   Footer-specific tweaks (better contrast)
   ============================================ */

/* Use warm gold for footer accent text & icons */
footer .text-secondary {
    color: #cb8941;
}

footer .lucide-mail,
footer .lucide-phone,
footer .lucide-map-pin,
footer .lucide-linkedin,
footer .lucide-twitter,
footer .lucide-facebook,
footer .lucide-instagram {
    color: #cb8941;
}

/* Keep social icon containers dark but icons gold on hover */
footer .w-10.h-10.rounded-lg {
    color: #cb8941;
}

footer .w-10.h-10.rounded-lg:hover {
    color: #ffffff;
}

/* Ensure footer contact icons have proper, consistent size */
footer .lucide-map-pin,
footer .lucide-mail,
footer .lucide-phone {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

/* Prevent email text from wrapping under icon */
footer .email_cion {
    flex-wrap: nowrap;
}

footer .email_cion span {
    word-break: break-all;
}

/* Footer social icons hover */
footer .flex.gap-4 a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .flex.gap-4 a:hover {
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(246, 217, 154, 0.3);
}

footer .flex.gap-4 a:hover svg {
    color: #1a1d5e;
    stroke: #1a1d5e;
}

/* Footer website link hover */
footer a.text-secondary {
    color: #F6D99A;
    transition: all 0.3s ease;
}

footer a.text-secondary:hover {
    color: #CC8941;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   Hero content color tuning
   ============================================ */

/* Brand name in hero: warm gold gradient for contrast on blue */
.hero .text-gradient {
    background: linear-gradient(135deg, #f6d99a 0%, #cb8941 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary CTA in hero: gold pill on blue background */
.hero .btn-primary {
    background: linear-gradient(135deg, #F6D99A 0%, #CC8941 100%);
    color: #1a1d5e;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
    border: none;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #f0cf85 0%, #b27332 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Secondary CTA: simple white outline for a clean look */
.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.9);
}
