/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for content areas */
p, h1, h2, h3, h4, h5, h6, span, div.hero-text, div.about-text, div.section-intro {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --primary-teal: #00A8B5;
    --primary-navy: #1B365D;
    --accent-navy: #0D1B2A;
    --gold-accent: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --medium-gray: #E2E8F0;
    --text-gray: #64748B;
    --text-dark: #1E293B;
    --border-light: #E2E8F0;
    --success-green: #10B981;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 168, 181, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 168, 181, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(27, 54, 93, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 168, 181, 0.2);
}

.navbar.scrolled::before {
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 168, 181, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(27, 54, 93, 0.08) 0%, transparent 50%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 181, 0.1);
}

.nav-link:hover {
    color: var(--primary-teal);
    background: rgba(0, 168, 181, 0.1);
    border-color: rgba(0, 168, 181, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 181, 0.2);
}

.nav-link:active {
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 181, 0.1);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 168, 181, 0.1);
    border-color: rgba(0, 168, 181, 0.3);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--primary-navy);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary-teal);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-teal);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 32px;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(0, 168, 181, 0.05);
    border: 1px solid rgba(0, 168, 181, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    display: block;
    text-align: center;
}

.mobile-nav-link:hover {
    background: rgba(0, 168, 181, 0.1);
    border-color: rgba(0, 168, 181, 0.3);
    color: var(--primary-teal);
    transform: translateY(20px) scale(1.02);
}

/* Staggered animation for mobile links */
.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}



/* Hero Section */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9fc 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 168, 181, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(27, 54, 93, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 168, 181, 0.15);
    color: var(--primary-teal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-amount {
    background: var(--success-green);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.card-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-metrics {
    display: flex;
    gap: 20px;
}

.metric-item {
    background: var(--light-gray);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Service Slider */
.card-content {
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.service-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-teal);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary-teal);
    opacity: 0.7;
}

.card-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.btn-primary-large {
    background: var(--primary-teal);
    color: var(--white);
    padding: 18px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary-large:hover {
    background: #008a94;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 181, 0.25);
}

.btn-text {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid var(--primary-navy);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

/* Section Styles */
.section-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    background: rgba(0, 168, 181, 0.1);
    color: var(--primary-teal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-main-image {
    display: flex;
    justify-content: center;
    margin: 48px 0 64px 0;
}

.about-main-image .image-container {
    max-width: 1000px;
    width: 100%;
    height: 500px;
}

.about-main-image .about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.about-grid {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.approach-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 168, 181, 0.12);
    border-color: var(--primary-teal);
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.approach-card .approach-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 168, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    margin: 0 auto 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover .approach-icon {
    transform: scale(1.1);
    background: var(--primary-teal);
    color: var(--white);
}

.approach-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.approach-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 168, 181, 0.15);
    border-color: var(--primary-teal);
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    background: var(--primary-teal);
    color: var(--white);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 168, 181, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

