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

body {
    font-family: 'Euclid Circular B', sans-serif;
    line-height: 1.6;
    color: #000;
}

.m-auto {
    margin: auto;
}

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

.hero .container {
    max-width: 1100px;
}

/* Header Styles */
.header {
    background: #F1F1F1;
    position: relative;
    z-index: 1000;
}

/* Sticky Navigation */
.navbar {
    padding: 40px 0 16px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(241, 241, 241, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar.sticky .nav-brand img {
    max-width: 120px;
}

.header-top {
    background: #284E8C;
    height: 12px;
}

/* Navbar styles are now defined above in the sticky navigation section */

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand img {
    max-width: 147px;
}

.logo-icon {
    display: flex;
    gap: 3px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #284E8C;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 10px;
}

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

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #284E8C;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    padding: 8px;
    text-decoration: none;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-header img {
    max-width: 120px;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    padding: 8px;
    text-decoration: none;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

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

.sidebar-item {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.sidebar-link:hover {
    background-color: #f8f9fa;
}

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

.sidebar-item.active .sidebar-link i {
    transform: rotate(180deg);
}

.sidebar-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-item.active .sidebar-dropdown {
    max-height: 300px;
}

.sidebar-dropdown li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-dropdown li a:hover {
    background-color: #e9ecef;
    color: #284E8C;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.mobile-demo-btn {
    width: 100%;
    justify-content: center;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Button Styles */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-family: 'Euclid Circular B', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

.btn-primary {
    background: #284E8C;
    color: white;
}

.btn-primary:hover {
    background: #1e3a6b;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #000;
    border: 1px solid #284E8C;
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.btn-arrow {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 18px 29px;
    font-size: 15px;
    font-weight: 400;
    max-width: fit-content;
}

.btn-arrow.btn-secondary {
    background: transparent;
    border-color: #000;
}

/* Hero Section */
.hero {
    background: #D9E3EB;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4B4646;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero {
    background: #D9E3EB;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;


}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    object-position: top right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .nav-menu {
        display: none;
    }

    .desktop-demo-btn {
        display: none;
    }

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

    .navbar.sticky {
        padding: 15px 0;
    }

    .navbar.sticky .nav-brand img {
        max-width: 100px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
}

/* About Section */
.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: flex;
    width: 100%;
    height: 100vh;
}

.about-video {
    width: 50%;
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.about-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-logo {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
}

.video-logo img {
    width: 100%;
    max-width: 63px;
}

.video-logo .logo-icon {
    display: flex;
    gap: 3px;
}

.video-logo .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.about-text {
    width: 50%;
    background: #EEE8E4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.about-title {
    font-size: 54px;
    font-weight: 400;
    color: #000;
    margin-bottom: 38px;
    line-height: 1.2;
}

.about-description {
    color: #000;
}

.about-description p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 354px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }

    .about-content {
        flex-direction: column;
        height: auto;
    }

    .about-video {
        height: 50vh;
        width: 100%;
    }

    .about-text {
        padding: 60px 40px;
        width: 100%;
    }

    .about-title {
        font-size: 36px;
    }

    .about-description p {
        font-size: 16px;
        max-width: 100%;
    }
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #9E9E9E;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 54px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.therapy-section {
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.therapy-title {
    font-size: 23px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.therapy-description {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    max-width: 547px;
    margin: auto;
}

.ai-platform-section {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-title {
    font-size: 23px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

.ai-subtitle {
    font-size: 14px;
    color: #000;
    margin-bottom: 60px;
}

.ai-modules {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.module {
    flex: 1;
    min-width: 165px;
    max-width: 165px;
    text-align: center;
}

.module-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.module-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.module-icon i {
    font-size: 32px;
    color: #284E8C;
}

.module-title {
    font-size: 16px;
    font-weight: 600;
    color: #284E8C;
    margin-bottom: 12px;
}

.module-description {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    max-width: 147px;
    margin: auto;
}

/* Responsive Design for How It Works Section */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .therapy-title,
    .ai-title {
        font-size: 20px;
    }

    .ai-modules {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 40px 0;
    }

    .module {
        max-width: 160px;
    }

    .hero {
        min-height: 60vh;
    }
}

/* Real Numbers Section */
.real-numbers {
    position: relative;
    min-height: 689px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0;
}

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

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #284E8C 0%, #1a3a6b 100%);
    opacity: 0.5;
}

.numbers-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
}

.numbers-content .section-subtitle {
    color: #fff;
    font-size: 19px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.numbers-content .section-title {
    font-size: 54px;
    font-weight: 400;
    color: white;
    margin-bottom: 80px;
    line-height: 1.2;
    max-width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-number {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.number {
    font-size: 160px;
    font-weight: 400;
    color: white;
    line-height: 1;
}

.symbol {
    font-size: 32px;
    font-weight: 300;
    color: white;
    margin-left: 8px;
    vertical-align: super;
}

.stat-description {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #fff;
    max-width: 200px;
    margin: 0 auto;
}

.treatment-cost {
    margin-top: 60px;
}

.treatment-cost p {
    font-size: 30px;
    color: white;
    font-weight: 400;
}

/* Responsive Design for Real Numbers Section */
@media (max-width: 768px) {
    .numbers-content .section-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .number {
        font-size: 80px;
    }

    .symbol {
        font-size: 20px;
    }

    .stat-description {
        font-size: 14px;
    }

    .treatment-cost p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        text-align: left;
    }

    .stats-grid {
        gap: 30px;
    }

    .number {
        font-size: 48px;
    }

    .symbol {
        font-size: 18px;
    }
}

/* Clinic Section */
.clinic-section {
    display: flex;
    align-items: center;
}

.clinic-content {
    display: flex;
    width: 100%;
    height: 100vh;
}

.clinic-slider {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.clinic-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.clinic-info {
    width: 50%;
    background: #EEE8E4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.clinic-title {
    font-size: 54px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.clinic-description {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 50px;
}

.clinic-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: white;
    color: #000;
    border: 1px solid #000;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Clinic Section */
@media (max-width: 768px) {
    .clinic-content {
        flex-direction: column;
        height: auto;
    }

    .clinic-slider,
    .clinic-info {
        width: 100%;
    }

    .clinic-slider {
        height: 50vh;
    }

    .clinic-title br {
        display: none;
    }

    .clinic-info {
        padding: 60px 40px;
    }

    .clinic-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .clinic-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .clinic-buttons {

        gap: 15px;
    }

    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Global Expansion Section */
.global-expansion {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.global-expansion .section-subtitle {
    color: #9E9E9E;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.global-expansion .section-title {
    font-size: 54px;
    font-weight: 400;
    color: #000;
    margin-bottom: 45px;
    line-height: 1.2;
    max-width: 500px;
}

.map-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1005;
}

.world-map {
    width: 100%;
    max-width: 100%;
    height: auto;

}

.country-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.country-label {
    position: absolute;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.country-label:hover {
    background: #284E8C;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.country-label span {
    display: block;
}

/* Interactive Country Pills */
.country-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.country-pill {
    position: absolute;
    background: #1F1F1F;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-width: 81px;
    max-width: 81px;
    text-align: center;
    overflow: hidden;
}

.country-pill:hover {
    background: #222;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    padding: 12px 16px;
    z-index: 1000;
}

.pill-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

/* Tooltip Styles - Now integrated into the pill */
.pill-tooltip {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    max-width: 110px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pill-tooltip h4 {
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 4px 0;
    opacity: 0.9;
}

.pill-tooltip p {
    color: #D7D7D7;
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
}

/* Show tooltip on hover */
.country-pill:hover .pill-tooltip,
.country-pill.active .pill-tooltip {
    opacity: 1;
    max-height: 100px;
    margin-top: 8px;
    padding-top: 8px;
    z-index: 1000;
}

/* Mobile active state */
.country-pill.active {
    background: #222;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    padding: 12px 16px;
    z-index: 1000;
}

/* Responsive Design for Global Expansion Section */
@media (max-width: 768px) {
    .global-expansion {
        padding: 60px 0;
    }

    .global-expansion .section-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .world-map {
        max-width: 100%;
    }

    .country-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .country-pill {
        padding: 6px 12px;
        font-size: 11px;
    }

    .country-pill:hover,
    .country-pill.active {
        min-width: 120px;
        padding: 10px 14px;
    }

    .pill-tooltip h4 {
        font-size: 11px;
    }

    .pill-tooltip p {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .global-expansion .section-title {
        font-size: 28px;
    }

    .country-label {
        font-size: 11px;
        padding: 4px 8px;
    }

    .country-pill {
        padding: 2px 3px;
        font-size: 8px;
        min-width: 50px;
        max-width: 50px;
    }

    .country-pill:hover,
    .country-pill.active {
        min-width: 90px;
        padding: 5px 8px;
        border-radius: 14px;
    }

    .pill-tooltip h4 {
        font-size: 10px;
    }

    .country-pill:hover .pill-tooltip,
    .country-pill.active .pill-tooltip {
        margin-top: 0;
    }

    .pill-tooltip p {
        font-size: 8px;
    }
}

/* Footer */
.footer {
    background: #D9E3EB;
    padding: 80px 0 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 60px;
}

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

.footer-logo img {
    max-width: 70px;
}

.footer-logo .logo-icon {
    display: flex;
    gap: 3px;
}

.footer-logo .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
}

.nav-column {
    min-width: 160px;
}

.nav-title {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links li {
    margin-bottom: 10px;
}

.nav-links a {
    color: #737373;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #284E8C;
    opacity: 1;
}

.footer-bottom {
    text-align: center;

}

.contact-title {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.ct-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-nav {
        gap: 40px;
        justify-content: flex-start;
    }

    .nav-column {
        min-width: 177px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

}

@media (max-width: 480px) {
    .footer-nav {
        gap: 30px 15px;
    }

    .nav-column {
        min-width: 150px;
        max-width: 150px;
    }

    .contact-title {
        font-size: 24px;
    }
}

/* Final CTA Section */
.final-cta {
    background: white;
    padding: 20px 0 80px 0;
    text-align: center;
}

.cta-headline {
    font-size: 74px;
    font-weight: 600;
    color: #284E8C;
    line-height: 1.2;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    background: #284E8C;
    color: white;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #1e3a6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 78, 140, 0.3);
}

.cta-button i {
    font-size: 16px;
}

/* Responsive Design for Final CTA Section */
@media (max-width: 768px) {
    .final-cta {
        padding: 40px 0;
    }

    .cta-headline {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .cta-headline {

        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .nav-title {
        font-size: 14px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .video-logo img {
        max-width: 40px;
    }
}

/* Contact Page Styles */
.contact-section {
    background: #fff;
    min-height: 100vh;
    padding: 60px 0 60px 0;
    display: flex;
    align-items: center;
}

.contact-content {
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-title2 {
    font-size: 54px;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
    margin-bottom: 40px;
}

.contact-description {
    font-size: 19px;
    line-height: 1.6;
    color: #4B4646;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #4B4646;
    margin-bottom: 20px;
}

.contact-form {
    padding: 0;
    border-radius: 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.phone-group {
    min-width: 280px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 20px;
    border: 2px solid #000;
    border-radius: 8px;
    font-family: 'Euclid Circular B', sans-serif;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s ease;
    resize: none;
}

.country-code {
    max-width: 100px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #284E8C;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 16px;
}

.phone-input {
    display: flex;
    gap: 0;
}

.country-code {
    width: 80px;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
    background: #f8f9fa;
    text-align: center;
    font-weight: 500;
}

.phone-input input {
    border-radius: 0 8px 8px 0 !important;
    border-left: none !important;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.contact-submit {
    background: #284E8C;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-family: 'Euclid Circular B', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: #1e3a6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 78, 140, 0.3);
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0 40px 0;
    }

    .contact-title2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .phone-group {
        min-width: auto;
    }

    .country-code {
        width: 70px;
    }

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

    .contact-submit {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Success Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

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

.modal-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.modal-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #4B4646;
    font-family: 'Euclid Circular B', sans-serif;
}

.modal-text p {
    font-size: 16px;
    font-weight: 400;
    color: #4B4646;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: 'Euclid Circular B', sans-serif;
}

.modal-ok-btn {
    background: #284E8C;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 40px;
    font-family: 'Euclid Circular B', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.modal-ok-btn:hover {
    background: #1e3a6b;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(40, 78, 140, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid #E5E7EB;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 54px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 14px;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    border: 1px solid #000;
    border-radius: 50px;
    overflow: hidden;
    background: white;
    max-width: 500px;
    margin: 0 auto;
    padding: 5px;
}

.newsletter-input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    outline: none;
    font-family: 'Euclid Circular B', sans-serif;
    font-size: 16px;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit {
    background: #000;
    color: white;
    border: 1px solid #000;
    padding: 20px 50px;
    font-family: 'Euclid Circular B', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 50px;
}



/* Responsive Newsletter Styles */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .newsletter-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 25px;
    }

    .newsletter-input {
        border-bottom: 1px solid #000;
        border-radius: 25px 25px 0 0;
    }

    .newsletter-submit {
        border-radius: 0 0 25px 25px;
        border-top: none;
    }
}