/* ==========================================================================
   TRIANGLE MEDICAL COMPLEX - PREMIUM DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-hsl: 180, 100%, 25%;
    --primary: hsl(var(--primary-hsl));
    --primary-light: hsl(180, 100%, 35%);
    --primary-dark: hsl(180, 100%, 15%);
    --primary-glow: hsla(var(--primary-hsl), 0.15);

    --secondary-hsl: 43, 56%, 52%;
    --secondary: hsl(var(--secondary-hsl));
    --secondary-light: hsl(43, 56%, 62%);
    --secondary-dark: hsl(43, 56%, 42%);

    --accent-blue-hsl: 226, 41%, 29%;
    --accent-blue: hsl(var(--accent-blue-hsl));

    --bg-base: #f4f7f6;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-dark: #12181b;
    --text-main: #2b353a;
    --text-muted: #5e6b73;
    --text-white: #ffffff;
    --border-color: rgba(0, 128, 128, 0.12);

    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,128,128,0.06), 0 10px 10px -5px rgba(0,0,0,0.03);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Cairo', 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1.3;
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #eef2f1; }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

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

.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--primary-glow);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.badge-special {
    background: linear-gradient(135deg, #e91e63, #ff4081);
    color: white;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(var(--primary-hsl), 0.3);
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(0,128,128,0.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-img {
    height: 55px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--primary-glow);
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 14px;
    flex-shrink: 1;
    white-space: nowrap;
}

.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 50px;
}

.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.88rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,128,128,0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-white);
}
.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-white {
    background: white;
    color: var(--primary);
}
.btn-white:hover { background: #f0f0f0; }

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-slide-content .badge {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-slide-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slide-content h1 span { color: var(--secondary); }

.hero-slide-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: var(--primary);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { right: 25px; }
.slider-arrow.next { left: 25px; }

/* Stats Strip */
.stats-strip {
    background-color: var(--accent-blue);
    padding: 50px 0;
    color: white;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50px;
}

.text-center .section-title::after {
    right: 50%;
    transform: translateX(50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

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

.feature-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.feature-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.package-price-box {
    margin-top: 15px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.package-currency {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.package-body {
    padding: 25px;
    flex-grow: 1;
}

.package-items-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.package-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.package-items li i { font-size: 1.1rem; }

.package-footer {
    padding: 20px 25px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

/* Image Gallery */
.gallery-section { background: #ffffff; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item.tall { grid-row: span 2; }

.gallery-item.wide { grid-column: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.testimonial-card {
    padding: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: var(--primary-glow);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.testimonial-name {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1rem;
}

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

/* Dental */
.dental-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.dental-table {
    width: 100%;
    border-collapse: collapse;
}

.dental-table th, .dental-table td {
    padding: 18px 20px;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}

.dental-table th {
    background-color: var(--primary-glow);
    color: var(--primary);
    font-weight: 700;
}

.dental-table tr:hover { background-color: rgba(0,128,128,0.02); }

.dental-badge-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.15rem;
}

/* Worker Exams */
.worker-exams-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.exam-item {
    box-shadow: none;
    background-color: rgba(255,255,255,0.6);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.exam-icon {
    font-size: 1.3rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    align-items: center;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

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

.contact-info-content p { color: var(--text-muted); font-size: 0.9rem; }

.contact-form { padding: 40px; }

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,128,128,0.15);
    background-color: rgba(255,255,255,0.9);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

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

.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

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

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

.footer-col h3 {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 50px;
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-white);
    transition: var(--transition);
}

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

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

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-light);
    transform: translateX(-4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 3px;
}

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

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
    padding: 70px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-images img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.about-images img:first-child {
    grid-column: span 2;
    height: 250px;
}

.about-images img:nth-child(2),
.about-images img:nth-child(3) {
    height: 180px;
}

/* Insurance */
.insurance-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.insurance-item {
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-weight: bold;
    color: var(--accent-blue);
    font-size: 1rem;
    background: white;
    transition: var(--transition);
}

.insurance-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 15px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-img {
        height: 48px;
    }
    .nav-menu {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    .header-actions .btn {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
    .header-actions {
        gap: 6px;
    }
}

@media (max-width: 992px) {
    .hero-slider { height: 500px; }
    .hero-slide-content h1 { font-size: 2.2rem; }
    .hero-slide-content p { font-size: 1rem; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .about-grid,
    .dental-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-images { max-width: 500px; margin: 0 auto; }

    .mobile-nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 80px);
        background-color: white;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
    }
    .nav-menu.open { right: 0; }
    .header-actions { display: none; }

    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.9rem; }
}

@media (max-width: 768px) {
    .hero-slider { height: 450px; }
    .hero-slide-content h1 { font-size: 1.8rem; }
    .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .slider-arrow.prev { right: 10px; }
    .slider-arrow.next { left: 10px; }

    .features-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 2; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item h3 { font-size: 2rem; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { right: 50%; transform: translateX(50%); }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .about-images img:first-child { height: 200px; }
    .about-images img:nth-child(2),
    .about-images img:nth-child(3) { height: 150px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-slider { height: 400px; }
    .hero-slide-content h1 { font-size: 1.5rem; }
    .hero-slide-content p { font-size: 0.9rem; }
    .section-title { font-size: 1.6rem; }
    .btn { padding: 10px 18px; font-size: 0.85rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide { grid-column: span 1; }
    .stats-grid { grid-template-columns: 1fr; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; }
}
