/* 
 * UI/UX Pro Max - Design System for Dr. Zaid Al-Ahjari Center
 * Custom CSS with Organic/Herbal Aesthetic
 */

:root {
    /* Color Palette */
    --color-primary: #1b3b2b;       /* Forest Green */
    --color-primary-rgb: 27, 59, 43;
    --color-primary-light: #2e6f40; /* Herbal Green */
    --color-primary-dark: #0f241a;
    --color-accent: #c5a880;        /* Warm Gold/Beige */
    --color-accent-hover: #b09168;
    --color-bg-light: #fdfbf7;      /* Warm Ivory */
    --color-bg-card: rgba(255, 255, 255, 0.85);
    --color-text-dark: #1e293b;
    --color-text-muted: #64748b;
    --color-border: rgba(27, 59, 43, 0.08);
    --color-error: #991b1b;
    --color-success: #166534;
    
    /* Fonts */
    --font-primary: 'Tajawal', sans-serif;
    --font-heading: 'Readex Pro', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Shadow System */
    --shadow-soft: 0 10px 30px -10px rgba(27, 59, 43, 0.05);
    --shadow-medium: 0 20px 40px -15px rgba(27, 59, 43, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(27, 59, 43, 0.04);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--color-accent);
}

.text-sm-muted {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    display: block;
}

.w-full {
    width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(27, 59, 43, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 111, 64, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Header Styles */
.floating-header {
    position: fixed;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.floating-header.scrolled {
    top: 12px;
    background: rgba(27, 59, 43, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.floating-header.scrolled .logo-title {
    color: #fff;
}

.floating-header.scrolled .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.floating-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.floating-header.scrolled .nav-link.active,
.floating-header.scrolled .nav-link:hover {
    color: var(--color-accent);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrapper {
    background: var(--color-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-header.scrolled .logo-icon-wrapper {
    background: var(--color-accent);
}

.logo-icon {
    width: 20px;
    height: 20px;
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
    padding: 8px 12px;
    border-radius: 20px;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary-light);
    background: rgba(46, 111, 64, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    font-size: 1.5rem;
}

.floating-header.scrolled .hamburger-menu {
    color: #fff;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-bg-light);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.close-drawer {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    cursor: pointer;
}

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
}

.drawer-link:hover {
    background: rgba(46, 111, 64, 0.05);
    color: var(--color-primary-light);
}

.drawer-footer {
    margin-top: auto;
}

/* Section Common Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(46, 111, 64, 0.08);
    color: var(--color-primary-light);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 9999px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag.tag-gold {
    background: rgba(197, 168, 128, 0.15);
    color: var(--color-accent);
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary-light);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

.section-divider.gold-divider {
    background-color: var(--color-accent);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    background-color: var(--color-primary);
    background-image: linear-gradient(180deg, rgba(27, 59, 43, 0.85) 0%, rgba(27, 59, 43, 0.95) 100%),
                      url('assets/images/hero_herbal_landscape.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(27, 59, 43, 0.4) 0%, rgba(27, 59, 43, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-stats-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.about-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(197, 168, 128, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 24px;
}

.about-icon-box i {
    width: 28px;
    height: 28px;
}

.about-content-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.about-content-card p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-features-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.about-image-card {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    position: relative;
}

.natural-frame-decor {
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 20px;
    right: -20px;
    border: 2px solid var(--color-accent);
    border-radius: 32px;
    z-index: 1;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--color-primary);
    color: #fff;
    padding: 20px;
    border-radius: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(27, 59, 43, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    text-align: center;
}

/* Diagnose Section & Interactive Tool */
.diagnose-section {
    position: relative;
    background-color: var(--color-primary);
    background-image: radial-gradient(circle at center, rgba(46, 111, 64, 0.2) 0%, transparent 70%);
    overflow: hidden;
}

.diagnose-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 60%);
    top: -200px;
    left: -200px;
    z-index: 1;
}

.section-header.white-text h2 {
    color: #fff;
}

.section-header.white-text .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.diagnose-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.diagnose-card-header {
    background: rgba(27, 59, 43, 0.04);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
}

.diagnose-card-header .header-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary-light);
}

.diagnose-card-header h3 {
    font-size: 1.35rem;
}

.diagnose-card-body {
    padding: 40px;
}

.question-box {
    margin-bottom: 30px;
}

.question-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.styled-select, .custom-select-wrapper select {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    background-color: #fff;
    border: 2px solid rgba(27, 59, 43, 0.12);
    border-radius: 16px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.custom-select-wrapper select:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(46, 111, 64, 0.1);
}

.select-arrow {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-primary-light);
    width: 20px;
    height: 20px;
}

/* Diagnostic Output Card */
.diagnostic-output {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 30px;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.diagnostic-output.hidden {
    display: none;
}

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

.output-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.output-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.badge-success {
    background: rgba(22, 101, 52, 0.1);
    color: var(--color-success);
}

.badge-warning {
    background: rgba(153, 27, 27, 0.1);
    color: var(--color-error);
}

.badge-gold {
    background: rgba(197, 168, 128, 0.15);
    color: var(--color-accent);
}

.output-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* Success Gauge */
.success-rate-gauge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gauge-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.gauge-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.gauge-track {
    fill: none;
    stroke: rgba(27, 59, 43, 0.05);
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke: var(--color-primary-light);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314.16;
    stroke-dashoffset: 314.16;
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-value {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

#gaugeNumber {
    font-size: 2rem;
    color: var(--color-primary);
}

.gauge-value .percent {
    font-size: 1rem;
    color: var(--color-primary);
    margin-right: 2px;
}

.gauge-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.output-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Rates Grid */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rate-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.rate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.rate-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.rate-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.rate-label {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
}

.card-green .rate-num { color: var(--color-primary-light); }
.card-green .rate-label { background: rgba(46, 111, 64, 0.08); color: var(--color-primary-light); }

.card-gold .rate-num { color: var(--color-accent); }
.card-gold .rate-label { background: rgba(197, 168, 128, 0.15); color: var(--color-accent); }

.card-blue .rate-num { color: #1e3a8a; }
.card-blue .rate-label { background: rgba(30, 58, 138, 0.08); color: #1e3a8a; }

.rate-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.rate-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ethics Section */
.ethics-section {
    background-color: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.ethics-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ethics-image-box {
    position: relative;
}

.ethics-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-medium);
}

.ethics-overlay-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-error);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(153, 27, 27, 0.15);
}

.ethics-content-box h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.align-right {
    margin-right: 0;
}

.ethics-lead {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 30px;
}

.ethics-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ethics-item {
    display: flex;
    gap: 16px;
}

.ethics-icon {
    width: 32px;
    height: 32px;
    background: rgba(197, 168, 128, 0.15);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.ethics-icon i {
    width: 16px;
    height: 16px;
}

.ethics-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.ethics-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Origins & Locations */
.origins-section {
    position: relative;
    background-color: var(--color-bg-light);
}

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

.location-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.location-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.location-card:hover .location-img {
    transform: scale(1.05);
}

.location-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.location-info {
    padding: 24px;
}

.location-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.location-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Vision Section */
.vision-box {
    position: relative;
    background: var(--color-primary);
    background-image: linear-gradient(135deg, rgba(27, 59, 43, 0.95) 0%, rgba(46, 111, 64, 0.9) 100%),
                      url('assets/images/hero_herbal_landscape.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    color: #fff;
}

.vision-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-tag-text {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.vision-content h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.vision-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.v-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.v-badge i {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
}

/* Contact & Smart WhatsApp */
.contact-section {
    background-color: #fff;
    border-top: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background: rgba(27, 59, 43, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 40px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.info-item-box {
    display: flex;
    gap: 16px;
}

.info-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-wrapper i {
    width: 20px;
    height: 20px;
}

.info-text-wrapper h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.info-text-wrapper p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-text-wrapper p.phone-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    direction: ltr;
    display: inline-block;
}

.map-styled-container {
    position: relative;
    height: 160px;
    background: var(--color-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.map-inner-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.25) 0%, transparent 80%);
    z-index: 1;
}

.map-bg-icon {
    position: absolute;
    width: 140px;
    height: 140px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    transform: rotate(-15deg);
}

.map-text {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px;
}

.map-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.map-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.styled-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background-color: rgba(27, 59, 43, 0.02);
    border: 1px solid rgba(27, 59, 43, 0.1);
    border-radius: 12px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    background-color: #fff;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(46, 111, 64, 0.08);
}

/* Footer */
.main-footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--color-accent);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 450px;
}

.footer-brand .logo-area {
    margin-bottom: 20px;
}

.footer-brand .logo-title {
    color: #fff;
}

.footer-brand .logo-icon {
    color: var(--color-accent);
}

.footer-brand p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-right: 4px;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-disclaimer p strong {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

.designer-text {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-grid, .ethics-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ethics-image-box {
        max-width: 500px;
        margin: 0 auto;
        order: 2;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .btn-call {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-strip {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .experience-badge {
        right: 0;
        bottom: 10px;
    }
    
    .diagnose-card-body {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
