:root {
    --main-color: #005c8d;
    --main-color-light: rgba(0, 122, 141, 0.1);
    --main-color-dark: #005a6a;
    --second-color: #f88c26;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 2rem;
    transition: padding 0.4s ease;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav-left-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
}

.nav-left-links li {
    position: relative;
}

.nav-left-links li a {
    color: #1a202c;
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-left-links li a:hover,
.nav-left-links li a.active {
    color: var(--main-color);
    background: #f7fafc;
}

.nav-left-links .dropdown-toggle::after {
    content: '▼';
    margin-right: 0.3rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.nav-left-links .dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

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

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

.nav-left-links .dropdown-menu li a {
    color: #4a5568;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    border-radius: 0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.nav-left-links .dropdown-menu li a:hover {
    background: #f7fafc;
    color: var(--main-color);
}

.nav-left-links .dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid #f1f5f9;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 40px;
    width: auto;
}

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

.logo-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--main-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: #1a202c;
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--main-color);
    background: #f7fafc;
}

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

.dropdown-toggle::after {
    content: '▼';
    margin-right: 0.3rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

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

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

.dropdown-menu li a {
    color: #4a5568;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    border-radius: 0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: #f7fafc;
    color: var(--main-color);
}

.dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid #f1f5f9;
}

/* CTA Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-btn {
    padding: 0.6rem 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-btn-secondary {
    background: white;
    border-color: #e2e8f0;
    color: #4a5568;
}

.nav-btn-secondary:hover {
    background: #f7fafc;
    border-color: var(--main-color);
    color: var(--main-color);
}

.nav-cta {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 141, 0.3);
}

.nav-cta:hover {
    background: var(--main-color-dark);
    box-shadow: 0 6px 20px rgba(0, 122, 141, 0.4);
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: var(--main-color);
    background: #f7fafc;
}

.language-btn svg {
    width: 18px;
    height: 18px;
}

.language-btn .dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.language-btn:hover .dropdown-icon {
    transform: rotate(-180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: block;
    padding: 10px 16px;
    color: #4a5568;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 0.9rem;
}

.language-option:hover {
    background: #f7fafc;
}

.language-option.active {
    background: var(--main-color-light);
    color: var(--main-color);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.mobile-menu-toggle.active {
    background: #f7fafc;
    color: var(--main-color);
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: #f9f9f9;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 2rem 2rem 8rem;
    border-radius: 0 0 50% 50% / 0 0 100px 100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0 / 50px 50px 0 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-left {
    animation: fadeInUp 1s ease-out;
    margin-bottom: 3rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        right: -100%;
    }
    20%, 100% {
        right: 100%;
    }
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-content h1 .highlight {
    color: var(--main-color);
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #64748b;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.5s both;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.7s both;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-primary {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 141, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: right 0.5s ease;
}

.btn-primary:hover {
    background: var(--main-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 122, 141, 0.4);
}

.btn-primary:hover::before {
    right: 100%;
}

.btn-secondary {
    background: white;
    color: #1a202c;
    border: 2px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color-light);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--main-color);
    color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 122, 141, 0.2);
}

.btn-secondary:hover::before {
    transform: translateY(0);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.hero-feature svg {
    color: #667eea;
}

/* Hero Right - Animated Cards */
.hero-right {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.dashboard-mockup {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
    border: 8px solid #e2e8f0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 15px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px) !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-0.5deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.card-stats {
    top: 50px;
    left: 50px;
    width: 280px;
    animation-delay: 0s;
}

.card-chart {
    top: 180px;
    right: 20px;
    width: 240px;
    animation-delay: 1s;
}

.card-activity {
    bottom: 80px;
    left: 80px;
    width: 260px;
    animation-delay: 2s;
}

.card-header {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.stat-label {
    color: #718096;
    font-size: 0.85rem;
}

.stat-value {
    font-weight: 700;
    color: #1a202c;
    font-size: 1.3rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: #667eea;
    border-radius: 10px;
    animation: progressGrow 2s ease-out forwards;
}

@keyframes progressGrow {
    from {
        width: 0%;
    }
}

.chart-container {
    width: 100%;
    height: 120px;
    position: relative;
    margin-top: 1rem;
}

.chart-line {
    stroke: #667eea;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    animation: drawLine 2s ease-out forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-point {
    fill: #667eea;
    animation: scaleIn 0.5s ease-out forwards;
    transform-origin: center;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-info {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.9rem;
}

.activity-time {
    color: #718096;
    font-size: 0.75rem;
}

.activity-badge {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Decorative Elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(2px);
    animation: floatRotate 25s ease-in-out infinite;
}

@keyframes floatRotate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(-30px, -30px) rotate(-120deg) scale(1.1);
    }
    66% {
        transform: translate(20px, 20px) rotate(-240deg) scale(0.9);
    }
}

.deco-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(-135deg, #667eea, #764ba2);
    top: 15%;
    right: 8%;
}

.deco-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(-135deg, #f093fb, #f5576c);
    bottom: 25%;
    right: 12%;
    animation-delay: -8s;
}

.deco-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(-135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 8%;
    animation-delay: -15s;
}

/* Why Choose Us Section - Simple & Clean */
.why-choose-section {
    padding: 0 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-form-group{
    margin-bottom: 0 !important;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f1f5f9;
    color: var(--main-color);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-title {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Scroll hint indicator */
.why-choose-container::after {
    display: none;
}

/* Features Main Layout */
.features-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

/* Features List Container (Left Side) */
.features-list-container {
    max-width: 550px;
}

.features-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.features-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.features-highlight {
    color: var(--main-color);
    position: relative;
}

.features-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.features-simple-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.features-list-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-simple-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.feature-bullet {
    color: var(--main-color);
    font-size: 0.6rem;
}

/* Features Image Container (Right Side) */
.features-image-container {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: linear-gradient(-135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 2rem;
}

.features-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.features-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Stats Row */
.stats-row-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.8s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

.stat-item:nth-child(4) {
    animation-delay: 1s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 4rem 2rem 6rem;
        border-radius: 0 0 50% 50% / 0 0 80px 80px;
    }

    .hero-section::after {
        height: 80px;
        border-radius: 50% 50% 0 0 / 80px 80px 0 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }


    .hero-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .nav-left {
        flex: 1;
    }

    .nav-left-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        animation: slideDown 0.3s ease;
        gap: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu.active ~ .nav-actions {
        display: flex;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 0 1.5rem 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        gap: 0.8rem;
        margin-top: 0;
        z-index: 999;
    }

    .nav-menu.active ~ .nav-actions .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .nav-menu.active ~ .nav-actions .language-selector {
        width: 100%;
    }

    .nav-menu.active ~ .nav-actions .language-btn {
        width: 100%;
        justify-content: center;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
        color: #4a5568;
    }

    .nav-menu li a:hover {
        background: #f7fafc;
        color: var(--main-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f7fafc;
        margin-top: 0.5rem;
        display: none;
        border: 1px solid #e2e8f0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #4a5568;
        padding: 0.8rem 1.5rem;
    }

    .dropdown-menu li a:hover {
        background: white;
        color: var(--main-color);
    }


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

    .logo-subtitle {
        display: none;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    /* Hero Responsive */
    .hero-section {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .dashboard-mockup {
        border-width: 6px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem 5rem;
        border-radius: 0 0 50% 50% / 0 0 60px 60px;
    }

    .hero-section::after {
        height: 60px;
        border-radius: 50% 50% 0 0 / 60px 60px 0 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

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

    .dashboard-mockup {
        border-width: 4px;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 38px;
    }


    /* Why Choose Us Responsive */
    .why-choose-section {
        padding: 4rem 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .features-main-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .features-list-container {
        max-width: 100%;
    }

    .features-main-title {
        font-size: 2rem;
    }

    .features-description {
        font-size: 0.95rem;
    }

    .features-simple-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-image-wrapper {
        padding: 1.5rem;
    }

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

    .stat-item:not(:last-child)::after {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .features-main-layout {
        gap: 2rem;
    }

    .features-main-title {
        font-size: 1.8rem;
    }

    .features-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .features-simple-list {
        margin-bottom: 2rem;
    }

    .feature-simple-item {
        font-size: 0.95rem;
    }

    .features-image-wrapper {
        padding: 1.2rem;
    }

    .features-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2.5rem 1rem 4rem;
        border-radius: 0 0 50% 50% / 0 0 40px 40px;
    }

    .hero-section::after {
        height: 40px;
        border-radius: 50% 50% 0 0 / 40px 40px 0 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .nav-menu li a {
        font-size: 0.85rem;
    }

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

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .section-badge {
        font-size: 0.65rem;
        padding: 0.35rem 1rem;
    }

    .features-main-title {
        font-size: 1.5rem;
    }

    .features-badge {
        font-size: 0.7rem;
    }

    .features-description {
        font-size: 0.85rem;
    }

    .feature-simple-item {
        font-size: 0.9rem;
    }

    .features-simple-list {
        gap: 0.8rem;
    }

    .features-image-wrapper {
        padding: 1rem;
    }

    .features-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }

    .stats-row-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

/* New Styles for Visual Card Section */
.features-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    animation: fadeInRight 0.8s ease-out;
}

.visual-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(-135deg, #e8f5e9 0%, #c8e6c9 100%);
    z-index: 1;
    border-radius: 20px;
}

.outline-shape {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px dashed rgba(102, 126, 234, 0.6);
    border-radius: 18px;
    pointer-events: none;
}

.accent-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.avatar-badge {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.avatar-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-card {
    position: relative;
    z-index: 3;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.3rem;
}

.card-value {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #4a5568;
}

.card-badge {
    background: var(--main-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.card-badge svg {
    width: 16px;
    height: 16px;
}

.card-divider {
    height: 2px;
    background: #e2e8f0;
    margin: 1rem 0;
    border-radius: 10px;
}

.card-chart {
    position: relative;
    height: 120px;
    margin-top: 1rem;
}

.chart-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.chart-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #4a5568;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-green {
    background: #10b981;
}

.dot-amber {
    background: #f59e0b;
}

.dot-orange {
    background: #f97316;
}

/* Adjusted Stats Row for Visual Card */
@media (max-width: 768px) {
    .stats-row-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

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

    .stat-item:not(:last-child)::after {
        display: none;
    }

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

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

/* Overrides to match the provided design more closely */
.features-main-title .features-highlight {
    background: linear-gradient(transparent 60%, rgba(0, 122, 141, 0.25) 60%);
    padding: 0 6px;
    border-radius: 4px;
}

/* Hero Visual Styles */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 100%;
}

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

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    border-radius: 50%;
}

.card-dots span:first-child {
    background: #f56565;
}

.card-dots span:nth-child(2) {
    background: #ed8936;
}

.card-dots span:last-child {
    background: #48bb78;
}

.card-title {
    font-weight: 600;
    color: #1a202c;
    font-size: 1.1rem;
}

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

.appointment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.appointment-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-5px);
}

.appointment-time {
    font-weight: 700;
    color: var(--main-color);
    min-width: 60px;
    font-size: 1.1rem;
}

.appointment-info {
    flex: 1;
}

.patient-name {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.appointment-type {
    font-size: 0.85rem;
    color: #718096;
}

.appointment-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.appointment-status.confirmed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.appointment-status.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

@media (max-width: 992px) {
    .features-main-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-card {
        padding: 1.5rem;
    }

    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .appointment-time {
        min-width: auto;
    }
}


/* How It Works Section */
.how-it-works-section {
    padding: 3em 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

/* Connection line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    right: 12.5%;
    left: 12.5%;
    height: 2px;
    background: linear-gradient(to left,
    var(--main-color) 0%,
    var(--main-color) 25%,
    #e2e8f0 25%,
    #e2e8f0 50%,
    #e2e8f0 50%,
    #e2e8f0 75%,
    #e2e8f0 75%,
    #e2e8f0 100%
    );
    z-index: 0;
}

.step-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
}

.step-card:hover {
    border-color: var(--main-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 122, 141, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--main-color);
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 2rem auto 1.5rem;
    background: linear-gradient(-135deg, rgba(0, 122, 141, 0.1) 0%, rgba(0, 122, 141, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(-135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: white;
    transform: scale(1.1);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.step-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.steps-cta {
    text-align: center;
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.steps-cta-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--main-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--main-color);
}

.steps-cta-btn:hover {
    background: var(--main-color-dark);
    border-color: var(--main-color-dark);
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.steps-cta-note {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        margin: 1.5rem auto 1.25rem;
    }

    .step-icon svg {
        width: 28px;
        height: 28px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .steps-cta-btn {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 3rem 2rem;
    background: linear-gradient(-135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--main-color);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--main-color);
}

.faq-item.active .faq-question {
    color: var(--main-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-item.active .faq-icon {
    transform: rotate(-180deg);
    color: var(--main-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.75rem;
}

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


.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #64748b;
    margin: 0 0 0.75rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0.5rem 0;
    padding-right: 1.5rem;
}

.faq-answer li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 0.5rem;
}


/* Contact Section */
.contact-section {
    padding: 3rem 2rem;
    background: white;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 1.5rem 0 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(-135deg, rgba(0, 122, 141, 0.1) 0%, rgba(0, 122, 141, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.contact-detail-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-color);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cbd5e1;
}

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

.contact-submit-btn {
    padding: 0.9rem 2rem;
    background: var(--main-color);
    color: white;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background: var(--main-color-dark);
    border-color: var(--main-color-dark);
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-section {
        padding: 4rem 1.5rem;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }


    .faq-item {
        margin-bottom: 0.875rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }


    .faq-answer p, .faq-answer li {
        font-size: 0.875rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }


    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .contact-detail-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-detail-text h4 {
        font-size: 0.9rem;
    }

    .contact-detail-text p {
        font-size: 0.85rem;
    }
}

/* Footer Styles */
.footer {
    background: #1e293b;
    color: #94a3b8;
}

.footer-main {
    padding: 3rem 2rem 2rem;
}

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

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

.footer-about {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-column-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.5rem 2rem;
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--main-color);
}

.footer-divider {
    color: rgba(148, 163, 184, 0.4);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-main {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-bottom {
        padding: 1.25rem 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Extra Small Devices for FAQ */
@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
    }


    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* ======================================
   21. Pricing Page Specific Styles
   ====================================== */

/* Pricing Hero Section */
.pricing-hero {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(-135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.pricing-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-hero p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 2rem auto 1.25rem;
    background: #f1f5f9;
    padding: 0.6rem;
    border-radius: 60px;
    border: 2px solid #e2e8f0;
    max-width: 360px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    overflow: hidden;
}

.billing-option {
    flex: 1;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.35s ease;
    color: #64748b;
    text-align: center;
    position: relative;
    z-index: 2;
    user-select: none;
}

.billing-option .save-badge {
    display: inline-block;
    margin-right: 0.4rem;
    background: #0ea5e9;
    color: #fff;
    padding: 0.2rem 0.5rem;
    font-size: 0.6rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: .5px;
}

.billing-option.active {
    background: linear-gradient(-135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 122, 141, .35);
}

.billing-option:not(.active) {
    background: transparent;
}

.billing-option:focus-visible {
    outline: 2px solid var(--main-color-light);
    outline-offset: 2px;
}

.billing-extra-note {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f766e;
    letter-spacing: .5px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.billing-extra-note svg {
    width: 14px;
    height: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 2rem 5rem;
    background: white;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--main-color);
}

.pricing-card-featured {
    background: linear-gradient(-135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid var(--main-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(0, 122, 141, 0.25);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 122, 141, 0.35);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(-135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 122, 141, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.pricing-plan-name {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.pricing-plan-desc {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 400;
}

.pricing-price-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.5rem;
}

.pricing-amount {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-card-featured .pricing-amount {
    background: linear-gradient(-135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 0.85rem;
    color: #64748b;
    align-self: flex-end;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.pricing-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.7rem 0;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 400;
    transition: all 0.3s ease;
}

.pricing-feature:hover {
    color: var(--main-color);
    transform: translateX(-5px);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--main-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card-featured .check-icon {
    background: var(--main-color-light);
    border-radius: 50%;
    padding: 2px;
}

.pricing-cta-btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1.75rem;
    background: var(--main-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--main-color);
}

.pricing-cta-btn:hover {
    background: var(--main-color-dark);
    border-color: var(--main-color-dark);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: white;
}

/* FAQ Section Enhancements for Pricing */
.faq-section {
    padding: 3rem 2rem;
    background: linear-gradient(-135deg, #f8fafc 0%, #ffffff 100%);
}

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

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

.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--main-color);
    box-shadow: 0 10px 15px -3px rgba(0, 122, 141, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--main-color);
}

.faq-item.active .faq-question {
    color: var(--main-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-item.active .faq-icon {
    transform: rotate(-180deg);
    color: var(--main-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.75rem;
}

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

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #64748b;
    margin: 0 0 0.75rem 0;
}

/* Pricing Page Responsive */
@media (max-width: 992px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }

    .pricing-card-featured {
        transform: scale(1);
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-hero p {
        font-size: 1rem;
    }

    .pricing-section {
        padding: 3rem 1rem;
    }

    .faq-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 4rem 1rem 2rem;
    }

    .pricing-hero h1 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}



/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.register-container {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.register-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.register-header p {
    font-size: 1rem;
    color: #6b7280;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 141, 0.1);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
}

.password-toggle:hover {
    color: var(--main-color);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.terms-checkbox {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.terms-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 0.125rem;
    cursor: pointer;
}

.terms-checkbox label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.terms-checkbox a {
    color: var(--main-color);
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.register-btn {
    width: 100%;
    padding: 1rem;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.register-btn:hover {
    background: var(--main-color-dark);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #9ca3af;
    font-size: 0.875rem;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e5e7eb;
}

.divider::before { right: 0; }
.divider::after { left: 0; }

.login-link {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

.login-link a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .register-container {
        padding: 2rem 1.5rem;
    }

    .register-header h1 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}


.login-container {
    width: 100%;
    max-width: 440px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 960px;      /* كانت 440 */
    padding: 0 3rem;
    /* شيلنا الخلفية والـ shadow عشان الكروت الصغيرة تبان */
    background: transparent;
    box-shadow: none;
}
.login-forms-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.auth-card {
    flex: 1 1 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* موبايل: الكروت تنزل تحت بعض */
@media (max-width: 768px) {
    .login-forms-row {
        flex-direction: column;
    }
}



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

.login-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.login-header p {
    font-size: 1rem;
    color: #6b7280;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 141, 0.1);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
}

.password-toggle:hover {
    color: var(--main-color);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.remember-me label {
    color: #6b7280;
    cursor: pointer;
}

.forgot-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.login-btn:hover {
    background: var(--main-color-dark);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #9ca3af;
    font-size: 0.875rem;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e5e7eb;
}

.divider::before { right: 0; }
.divider::after { left: 0; }

.register-link {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

.register-link a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .login-container {
        padding: 0 1.5rem;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }
}
