/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1568B8;
    --secondary-color: #42E5FF;
    --accent-color: #F472B6;
    --blue-soft: #BFDBFE;
    --pink-soft: #F9A8D4;
    --lux-gold: #FDE047;
    --neon-glow: 0 0 24px rgba(66, 229, 255, 0.35);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --elev-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    --dark-color: #EAF2FF;
    --light-color: #0F6BB8;
    --gray-color: #AFC3E9;
    --success-color: #2563EB;
    --danger-color: #1568B8;
    --text-color: #EAF2FF;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background:
        radial-gradient(circle at 12% 8%, rgba(66, 229, 255, 0.22), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(244, 114, 182, 0.18), transparent 30%),
        radial-gradient(circle at 70% 90%, rgba(253, 224, 71, 0.14), transparent 36%),
        linear-gradient(135deg, #1976C9 0%, #0E5FA8 45%, #083E73 100%);
    overflow-x: hidden;
}

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

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(8, 61, 118, 0.88);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(66, 229, 255, 0.22);
    z-index: 1000;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(66, 229, 255, 0), rgba(66, 229, 255, 0.9), rgba(244, 114, 182, 0.75), rgba(66, 229, 255, 0));
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1D4ED8, #42E5FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 18px rgba(66, 229, 255, 0.45);
}

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

.clinic-name {
    font-weight: 700;
    font-size: 16px;
    color: #BFDBFE;
}


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

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #42E5FF, #F472B6, #FDE047);
    transition: width 0.3s ease;
}

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

.language-selector {
    position: relative;
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.language-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.language-btn:hover {
    color: var(--primary-color);
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #0F6BB8, #0A4E8A);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    transition: var(--transition);
    border-bottom: 1px solid rgba(191, 219, 254, 0.20);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.language-option i {
    font-size: 0.85rem;
    opacity: 0;
    transition: var(--transition);
}

.language-option.active i {
    opacity: 1;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

.hero-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
}

.hero-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Special layout for 2 images (slide 5) - 2 columns, full height */
.hero-grid-2col {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0;
}

.hero-grid-2col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-grid-wall {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
}

.hero-grid-wall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-single-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #0C579B;
}

.hero-single-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    filter: blur(16px);
    transform: scale(1.08);
    opacity: 0.55;
    z-index: 1;
}

.hero-single-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 2;
}

/* Special grid for 2 images (slide 5) */
.hero-slide-2img .hero-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr !important;
    grid-auto-rows: 1fr !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 48, 97, 0.34), rgba(6, 48, 97, 0.76));
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    width: min(1120px, 100%);
    max-width: 1120px;
    padding: 22px 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: none;
    box-shadow: 0 8px 24px rgba(2, 8, 24, 0.24);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55), 0 0 24px rgba(66, 229, 255, 0.2);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 18px rgba(66, 229, 255, 0.45);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    max-width: 100%;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -32%;
    width: 44%;
    height: 320%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
    transform: rotate(18deg);
    transition: transform 0.6s ease, left 0.6s ease;
}

.btn:hover::before {
    left: 110%;
}

.btn-primary {
    background: linear-gradient(135deg, #1D4ED8, #42E5FF 60%, #FDE047);
    color: #0A4E8A;
    box-shadow: 0 6px 18px rgba(66, 229, 255, 0.42);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16C985, #52FFC0 60%, #FFE66D);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66, 229, 255, 0.52);
}

.btn-secondary {
    background: linear-gradient(135deg, #0F6BB8, #0A4E8A);
    color: #E8FFF4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    border: 2px solid #F472B6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn-secondary:hover {
    background: #0A4E8A;
    transform: translateY(-2px);
    color: #42E5FF;
    border-color: #FDE047;
}

.hero-slider {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 3;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F6BB8, #0A4E8A);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BFDBFE;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #42E5FF, #F472B6, #FDE047);
    color: #0A4E8A;
    box-shadow: var(--neon-glow);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots span.active {
    background: linear-gradient(90deg, #42E5FF, #F472B6, #FDE047);
    width: 30px;
    border-radius: 5px;
}

/* ===== SUCCESS RATE SECTION ===== */
.success-rate {
    background: linear-gradient(135deg, #08457A, #06335B);
    padding: 80px 0;
}

.success-rate h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #7DD3FC;
    margin-bottom: 60px;
    text-shadow: 0 0 16px rgba(66, 229, 255, 0.28);
}

.success-rate h2,
.services h2,
.doctors h2,
.articles h2,
.location h2,
.contact h2,
.about h2,
.calculator h2 {
    position: relative;
    display: inline-block;
    background: linear-gradient(100deg, #7DD3FC 18%, #42E5FF 44%, #F472B6 66%, #FDE047 88%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headingShimmer 7s linear infinite;
    letter-spacing: 0.4px;
}

@keyframes headingShimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -20% center;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #0F6BB8, #0D5EA8);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(66, 229, 255, 0.22);
    border-top: 5px solid;
    border-image: linear-gradient(90deg, #1D4ED8, #42E5FF, #FDE047) 1;
    backdrop-filter: blur(8px);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), var(--neon-glow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #38BDF8, #FDE047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(2, 18, 37, 0.66), rgba(2, 18, 37, 0.66));
    background-image: linear-gradient(135deg, rgba(2, 18, 37, 0.66), rgba(2, 18, 37, 0.66)), url('../assets/img/gambar7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    padding: 10px 0;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-list i {
    color: #BFDBFE;
    font-size: 1.2rem;
}


/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #08457A, #06335B);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #7DD3FC;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #0F6BB8, #0D5EA8);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1D4ED8;
    border-top: 1px solid rgba(66, 229, 255, 0.22);
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
}

.service-card:nth-child(2) {
    border-left-color: #2563EB;
}

.service-card:nth-child(3) {
    border-left-color: #BFDBFE;
}

.service-card:nth-child(4) {
    border-left-color: #1568B8;
}

.service-card:nth-child(5) {
    border-left-color: #2563EB;
}

.service-card:nth-child(6) {
    border-left-color: #BFDBFE;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.24), 0 0 20px rgba(66, 229, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #42E5FF, #FDE047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== DOCTORS SECTION ===== */
.doctors {
    padding: 80px 0;
    background: linear-gradient(135deg, #06335B, #08457A);
}

.doctors h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #7DD3FC;
    margin-bottom: 60px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.doctor-card {
    background: linear-gradient(135deg, #0F6BB8, #0D5EA8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(66, 229, 255, 0.2);
    backdrop-filter: blur(8px);
}

.doctor-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), var(--neon-glow);
    transform: translateY(-10px);
}

.doctor-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1568B8, #2563EB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.doctor-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 20px 0 10px;
    padding: 0 20px;
}

.doctor-specialty {
    color: #7DD3FC;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 20px;
}

.doctor-bio {
    color: var(--gray-color);
    font-size: 0.9rem;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* ===== ARTICLES SECTION ===== */
.articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #08457A, #06335B);
}

.articles h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #7DD3FC;
    margin-bottom: 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: linear-gradient(135deg, #0F6BB8, #0D5EA8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(66, 229, 255, 0.2);
    backdrop-filter: blur(8px);
}

.article-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 18px rgba(244, 114, 182, 0.22);
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1568B8, #2563EB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
}

.article-content {
    padding: 25px;
}

.article-date {
    color: #7DD3FC;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 15px 0;
    line-height: 1.4;
}

.article-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #38BDF8;
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more:hover {
    color: #F9A8D4;
}

/* ===== CALCULATOR SECTION ===== */
.calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #0C3F70, #0A2F58 52%, #145C9F 76%, #2B83C8 100%);
    color: white;
    text-align: center;
}

.calculator h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.calculator-content {
    max-width: 500px;
    margin: 0 auto;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.calculator-form p {
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.calculator-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.calculator-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.calculator-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.result {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: 80px 0;
    background: linear-gradient(135deg, #06335B, #08457A);
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #7DD3FC;
    margin-bottom: 60px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-info {
    display: grid;
    gap: 30px;
}

.location-item h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-item i {
    color: #38BDF8;
    font-size: 1.3rem;
}

.location-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.location-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(66, 229, 255, 0.28);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #08457A, #06335B);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #7DD3FC;
    margin-bottom: 60px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, #0F6BB8, #0D5EA8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(66, 229, 255, 0.2);
    backdrop-filter: blur(8px);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(191, 219, 254, 0.35);
    border-radius: 8px;
    background: rgba(8, 61, 118, 0.7);
    color: #E8FFF4;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #38BDF8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.contact-form button {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: #021A14;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(66, 229, 255, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #42E5FF, #F472B6, #FDE047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: #FDE047;
    margin-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, #42E5FF, #F472B6, #FDE047);
    color: #083E73;
    box-shadow: var(--neon-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #0F6BB8, #0A4E8A);
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        border-bottom: 1px solid rgba(191, 219, 254, 0.2);
        padding: 15px 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
    }

    .btn::before {
        display: none;
    }

    .hero-text {
        width: 100%;
        padding: 18px;
        backdrop-filter: none;
        box-shadow: 0 6px 16px rgba(2, 8, 24, 0.2);
    }

    .hero-content {
        padding: 0 12px 18px;
    }

    .stat-card,
    .service-card,
    .doctor-card,
    .article-card,
    .contact-form {
        backdrop-filter: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .doctors-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .success-rate h2,
    .services h2,
    .doctors h2,
    .articles h2,
    .calculator h2,
    .location h2,
    .contact h2,
    .about h2 {
        animation-duration: 10s;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-name {
        display: none;
    }

    .nav-menu {
        gap: 0;
    }

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

    .hero-content {
        padding: 0 10px 16px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .service-card,
    .doctor-card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .success-rate h2,
    .services h2,
    .doctors h2,
    .articles h2,
    .calculator h2,
    .location h2,
    .contact h2,
    .about h2 {
        animation: none;
    }
}
