/* ========================================
   Barley Hair Transplant - Updated Stylesheet
   ======================================== */

:root {
    --navy: #001F5B;
    --navy-light: #1a336b;
    --gold: #FFD700;
    --gold-hover: #E6C200;
    --text-dark: #2c3e50;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0, 31, 91, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo img {
    height: 50px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

nav a:hover, nav a.active {
    color: var(--gold);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 31, 91, 0.3);
    z-index: 999;
    display: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 31, 91, 0.4);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: var(--navy);
}

.back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 520px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 31, 91, 0.25) 0%, rgba(0, 31, 91, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

.btn-outline:hover {
    background: white;
    color: var(--navy);
}

/* Section */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-title .gold-divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 18px;
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    grid-column: 1 / -1;
}

.stat-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.about-video {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
}

.about-video video {
    width: 100%;
    display: block;
}

/* Why Choose Us */
.why-choose-us {
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--gold);
}

.why-choose-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.why-choose-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--gold);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Technology Section */
.technology {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-video {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
}

.tech-video video {
    width: 100%;
    display: block;
}

.tech-text h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.tech-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.tech-features {
    margin-top: 30px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.tech-feature i {
    color: var(--gold);
    font-size: 24px;
    margin-top: 3px;
}

.tech-feature span {
    color: var(--text-dark);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.1);
    aspect-ratio: 1;
    border: 2px solid rgba(0, 31, 91, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(0, 31, 91, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, var(--navy));
    color: white;
}

.gallery-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.photo-item {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.1);
    transition: all 0.3s;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.photo-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(0, 31, 91, 0.15);
}

.photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    background: white;
    padding: 20px;
    text-align: center;
}

.photo-caption h4 {
    color: var(--navy);
    margin-bottom: 5px;
}

.photo-caption p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 30px;
    border-left: 4px solid var(--gold);
    border-top: 2px solid rgba(0, 31, 91, 0.1);
    border-right: 2px solid rgba(0, 31, 91, 0.1);
    border-bottom: 2px solid rgba(0, 31, 91, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: bold;
    font-size: 24px;
}

.testimonial-info h4 {
    color: var(--navy);
    margin-bottom: 3px;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* Hospital Environment */
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hospital-item {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.1);
    transition: all 0.3s;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.hospital-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(0, 31, 91, 0.15);
}

.hospital-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hospital-caption {
    background: white;
    padding: 20px;
}

.hospital-caption h4 {
    color: var(--navy);
    margin-bottom: 5px;
}

.hospital-caption p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Locations */
.locations {
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.location-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.location-item:hover {
    background: var(--navy);
    color: white;
    border-color: var(--gold);
    transform: translateY(-5px);
}

.location-item i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    color: var(--gold);
}

.location-item:hover i {
    color: var(--gold);
}

.location-item span {
    font-weight: 500;
}

/* FAQ */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 31, 91, 0.08);
    border: 2px solid var(--bg-light);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--gold);
    background: var(--bg-light);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

/* Contact */
.contact {
    background: white;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.contact-item {
    background: var(--navy);
    color: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 31, 91, 0.3);
}

.contact-item i {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    opacity: 0.9;
    font-size: 15px;
}

.contact-item.qrcode-card {
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.contact-item.qrcode-card img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 15px;
    background: white;
    padding: 10px;
}

/* Copy notification */
.copy-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 31, 91, 0.3);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 10px;
}

.copy-notification.show {
    display: flex;
    animation: slideIn 0.3s ease;
}

.copy-notification i {
    color: var(--gold);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Contact item clickable */
.contact-item.clickable {
    cursor: pointer;
}

.contact-item.clickable:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 31, 91, 0.4);
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.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);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--navy);
        box-shadow: -5px 0 20px rgba(0, 31, 91, 0.3);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav a {
        font-size: 18px;
        padding: 10px 15px;
        display: block;
    }
    
    .back-to-top {
        display: none !important;
    }
    
    .hero-slide {
        height: 380px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-grid, .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-box {
        padding: 18px;
    }
    
    .stat-box h3 {
        font-size: 26px;
    }
    
    .stat-box p {
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    /* Footer Responsive */
    .footer-grid {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .footer-bottom p {
        margin: 0;
        font-size: 13px;
        line-height: 1.4;
    }
    
    .gallery-grid,
    .hospital-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Doctors Section */
.doctors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.doctors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.doctor-profile {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.doctor-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.doctor-photo-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: var(--bg-light);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.doctor-profile:hover .doctor-photo {
    transform: scale(1.05);
}

.doctor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.doctor-details {
    padding: 35px;
}

.doctor-details h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 8px;
}

.doctor-position {
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.doctor-bio {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.doctor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.expertise-tag {
    background: var(--bg-light);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Cases Section Styles */
.cases-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--navy);
    background: white;
    color: var(--navy);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.cases-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.case-item {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.case-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.case-item:hover img {
    transform: scale(1.05);
}

/* Results Stats Section Styles */
.results-stats-section {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    color: white;
    font-size: 36px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Real Cases Showcase Section Styles */
.real-cases-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.cases-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cases-showcase-card {
    background: white;
    padding: 45px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.cases-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.showcase-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.showcase-icon i {
    color: white;
    font-size: 40px;
}

.cases-showcase-card h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.cases-showcase-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive for Cases Section */
@media (max-width: 992px) {
    .cases-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-gallery {
        grid-template-columns: 1fr;
    }
    
    .case-item img {
        height: 200px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .cases-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-showcase-card {
        padding: 35px 30px;
    }
    
    .showcase-icon {
        width: 75px;
        height: 75px;
    }
    
    .showcase-icon i {
        font-size: 34px;
    }
}

/* Service Details Section */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
}

.service-detail-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content {
    padding: 35px;
    flex: 1;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--navy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--gold);
}

.service-detail-content h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-detail-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-detail-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.service-feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.service-feature-item i {
    color: var(--gold);
    font-size: 14px;
}

.service-feature-item span {
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
}

/* Technology Cards Grid */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tech-card {
    background: white;
    padding: 40px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
}

.tech-card-icon {
    width: 70px;
    height: 70px;
    background: var(--navy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--gold);
}

.tech-card h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 24px;
}

.tech-card h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.tech-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.tech-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-card-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.tech-card-feature:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.tech-card-feature i {
    color: var(--gold);
    font-size: 14px;
}

.tech-card-feature span {
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
}

/* Comparison Cards */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.comparison-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
}

.comparison-card.primary {
    border: 3px solid var(--gold);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.comparison-header i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.comparison-header h3 {
    color: var(--navy);
    font-size: 22px;
    margin: 0;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comparison-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-light);
}

.comparison-feature:last-child {
    border-bottom: none;
}

.comparison-label {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.comparison-value {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.comparison-value i.fa-check {
    color: #27ae60;
    font-size: 18px;
}

.comparison-value i.fa-times {
    color: #e74c3c;
    font-size: 18px;
}

/* Patents Grid */
.patents-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.patent-detail-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.patent-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
}

.patent-detail-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.patent-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: white;
}

.patent-detail-content {
    padding: 30px;
    flex: 1;
}

.patent-detail-number {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.patent-detail-content h4 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 18px;
}

.patent-detail-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section Enhanced */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.feature-card.enhanced {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 2px solid var(--bg-light);
    transition: all 0.4s ease;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-card.enhanced:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.1);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--navy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 31, 91, 0.2);
}

.feature-content h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: var(--navy);
    padding: 60px 50px;
    border-radius: 30px;
}

.trust-item {
    text-align: center;
    color: white;
}

.trust-item i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
    color: var(--gold);
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.trust-item p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .doctors-section,
    .why-choose-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .doctors-container {
        grid-template-columns: 1fr;
    }

    .doctor-photo-wrapper {
        height: 300px;
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .feature-card.enhanced {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px;
    }

    .trust-indicators {
        grid-template-columns: 1fr 1fr;
        padding: 40px 30px;
    }
    
    .service-details-grid,
    .tech-cards-grid,
    .comparison-cards,
    .patents-detailed-grid {
        grid-template-columns: 1fr;
    }
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(0, 31, 91, 0.1);
    box-shadow: 0 5px 20px rgba(0, 31, 91, 0.06);
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: white;
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.12);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--gold);
}

.achievement-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.achievement-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ==================== Missing CSS Styles for Service Detail Pages ==================== */

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: white;
}

/* Enhanced Section Header */
.enhanced-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.enhanced-section-header h1 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 15px;
}

.enhanced-section-header p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Overview Card */
.service-overview-card {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 50px;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-overview-content h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-overview-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.overview-features {
    list-style: none;
    padding: 0;
}

.overview-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.overview-features li i {
    color: var(--gold);
    font-size: 18px;
}

/* Enhanced Overview Section */
.service-overview-enhanced {
    background: linear-gradient(135deg, var(--navy) 0%, #0a2a5e 100%);
    padding: 60px 50px;
    border-radius: 35px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.service-overview-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-overview-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.overview-enhanced-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.overview-enhanced-content {
    color: white;
}

.overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-badge i {
    font-size: 16px;
}

.overview-enhanced-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.overview-enhanced-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.overview-features-enhanced {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.overview-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.overview-feature-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
    border-color: var(--gold);
}

.overview-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 14px;
}

.overview-feature-text {
    flex: 1;
}

.overview-feature-text span {
    font-size: 14px;
    font-weight: 500;
    color: white;
    line-height: 1.5;
}

.overview-enhanced-image {
    position: relative;
}

.overview-image-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.overview-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.overview-enhanced-image:hover .overview-image-wrapper img {
    transform: scale(1.05);
}

.overview-stats-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 30px;
}

.overview-stat-item {
    text-align: center;
}

.overview-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 5px;
}

.overview-stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Alternate Overview Layout - Accent Style */
.service-overview-accent {
    background: white;
    padding: 50px;
    border-radius: 35px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    border: 2px solid var(--bg-light);
}

.overview-accent-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.overview-accent-image {
    position: relative;
}

.overview-accent-image-wrapper {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.overview-accent-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.overview-accent-image:hover .overview-accent-image-wrapper img {
    transform: scale(1.05);
}

.overview-accent-content h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 15px;
}

.overview-accent-subtitle {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-accent-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.overview-accent-features {
    list-style: none;
    padding: 0;
}

.overview-accent-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-light);
}

.overview-accent-feature:last-child {
    border-bottom: none;
}

.overview-accent-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--gold), #e6c200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.overview-accent-text h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 3px;
    font-weight: 600;
}

.overview-accent-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Responsive for Enhanced Overview */
@media (max-width: 992px) {
    .overview-enhanced-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-accent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-overview-enhanced {
        padding: 40px 25px;
    }
    
    .service-overview-accent {
        padding: 30px 25px;
    }
    
    .overview-enhanced-content h2 {
        font-size: 28px;
    }
    
    .overview-features-enhanced {
        grid-template-columns: 1fr;
    }
    
    .overview-stats-box {
        position: static;
        margin-top: 20px;
        gap: 20px;
    }
    
    .overview-stat-number {
        font-size: 26px;
    }
}

/* Geo Section (Card Grid Section) */
.geo-section {
    margin-bottom: 50px;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.geo-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.geo-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.geo-card.primary {
    background: var(--navy);
    color: white;
}

.geo-card.primary h3,
.geo-card.primary li {
    color: white;
}

.geo-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--navy);
}

.geo-card.primary .geo-icon {
    background: var(--gold);
}

.geo-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 20px;
}

.geo-card ul {
    list-style: none;
    padding: 0;
}

.geo-card li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.geo-card li strong {
    color: var(--navy);
}

.geo-card.primary li strong {
    color: var(--gold);
}

/* Procedure Steps Section */
.procedure-steps-section {
    margin-top: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: white;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Styles for Added Sections */
@media (max-width: 768px) {
    .enhanced-section-header h1 {
        font-size: 32px;
    }

    .enhanced-section-header p {
        font-size: 16px;
    }

    .service-overview-card {
        padding: 30px;
    }

    .service-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .geo-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Three Step Process Section */
.three-step-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.three-step-process .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.three-step-process .step-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border-top: 4px solid var(--gold);
}

.three-step-process .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 31, 91, 0.15);
}

.three-step-process .step-number {
    width: 70px;
    height: 70px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 31, 91, 0.2);
}

.three-step-process .step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold) 0%, #e6c200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 42px;
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.three-step-process .step-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.three-step-process .step-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .three-step-process {
        padding: 60px 0;
    }
    
    .three-step-process .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .three-step-process .step-card {
        padding: 35px 25px;
    }
    
    .three-step-process .step-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
    
    .three-step-process .step-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* Service Info Section Styles */
.service-info-section {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.service-info-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 31, 91, 0.1);
}

.service-info-section h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info-section h4 i {
    color: var(--gold);
    font-size: 20px;
}

.service-info-section p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.service-info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-info-section ul li {
    color: var(--text-gray);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-info-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 16px;
}

.service-detail-card {
    position: relative;
    overflow: visible;
}

/* Mobile responsive for service info sections */
@media (max-width: 768px) {
    .service-info-section {
        padding: 15px;
    }
    
    .service-info-section h4 {
        font-size: 16px;
    }
    
    .service-info-section p,
    .service-info-section ul li {
        font-size: 13px;
    }
}

/* Featured Technology Styles */
.featured-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-tech-video {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
}

.featured-tech-video video {
    width: 100%;
    display: block;
}

.featured-tech-content h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-tech-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-tech-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.featured-feature {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.featured-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.featured-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.featured-feature-icon i {
    color: white;
    font-size: 24px;
}

.featured-feature-text h4 {
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 5px;
}

.featured-feature-text p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Tech Cards Grid Styles */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.tech-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-card-icon i {
    color: white;
    font-size: 36px;
}

.tech-card h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 5px;
}

.tech-card h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 15px;
}

.tech-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.tech-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-card-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.tech-card-feature i {
    color: var(--gold);
    font-size: 16px;
}

/* Comparison Cards Styles */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.comparison-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
}

.comparison-card.primary {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--bg-light), white);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.comparison-header i {
    color: var(--gold);
    font-size: 40px;
    margin-bottom: 15px;
}

.comparison-header h3 {
    color: var(--navy);
    font-size: 20px;
    margin: 0;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.comparison-feature:last-child {
    border-bottom: none;
}

.comparison-label {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
}

.comparison-value {
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    text-align: right;
}

.comparison-value i.fa-check {
    color: #27ae60;
    font-size: 18px;
}

.comparison-value i.fa-times {
    color: #e74c3c;
    font-size: 18px;
}

/* Patent Detail Cards Styles */
.patents-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.patent-detail-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.patent-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.patent-detail-image {
    width: 100%;
    aspect-ratio: 750/1060;
    overflow: hidden;
}

.patent-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: white;
    transition: transform 0.3s ease;
}

.patent-detail-card:hover .patent-detail-image img {
    transform: scale(1.05);
}

.patent-detail-content {
    padding: 25px;
}

.patent-detail-number {
    display: inline-block;
    background: var(--bg-light);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.patent-detail-content h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 10px;
}

.patent-detail-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Technology Pages */
@media (max-width: 992px) {
    .featured-tech {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-tech-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-cards-grid,
    .comparison-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-tech-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-cards-grid,
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .patents-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-badge {
        font-size: 11px;
        padding: 6px 20px;
    }
}

/* Process Section Styles */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
    position: relative;
    overflow: visible;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.05), rgba(0, 31, 91, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-icon i {
    color: var(--gold);
    font-size: 30px;
}

.process-card h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.process-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive for Process Section */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        padding: 30px 25px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 26px;
    }
}

/* Values Section */
.values .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--gold);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 31, 91, 0.15);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
    color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 31, 91, 0.2);
}

.value-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.timeline-content h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border: 4px solid var(--navy);
    border-radius: 50%;
    top: 40px;
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

/* Patents Section */
.patents-section {
    padding: 100px 0;
    background: white;
}

.patents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.patent-item {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 31, 91, 0.05);
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.patent-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.patent-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.patent-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .values .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .value-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
        left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 8px;
        right: auto;
    }
    
    .patents-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .patent-image {
        height: 130px;
    }
}

/* Promises Section */
.promises-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
}

.promises-section .section-title h2 {
    color: white;
}

.promises-section .section-title p {
    color: rgba(255, 255, 255, 0.85);
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.promise-card {
    background: white;
    padding: 45px 35px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border-top: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #e6c200 50%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promise-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.promise-card:hover::before {
    opacity: 1;
}

.promise-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, #e6c200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 44px;
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.promise-card:hover .promise-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.promise-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.promise-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .promises-section {
        padding: 60px 0;
    }
    
    .promises-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .promise-card {
        padding: 35px 25px;
    }
    
    .promise-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }
}

/* Safety Guarantees Section Styles */
.safety-guarantees {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.safety-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
    text-align: center;
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.safety-icon i {
    color: white;
    font-size: 36px;
}

.safety-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 15px;
}

.safety-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive for Safety Section */
@media (max-width: 992px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .safety-guarantees {
        padding: 60px 0;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-card {
        padding: 35px 30px;
    }
}

/* FAQ Section Styles */
.faq-categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.enhanced-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enhanced-section-header h1 {
    color: var(--navy);
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.enhanced-section-header p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-tab {
    padding: 12px 28px;
    background: white;
    border: 2px solid rgba(0, 31, 91, 0.1);
    color: var(--navy);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 31, 91, 0.06);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    font-size: 17px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Quick Facts Section Styles */
.quick-facts-section {
    padding: 80px 0;
    background: white;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.quick-fact-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.quick-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.quick-fact-card.primary {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
    color: white;
    border-color: var(--navy);
}

.quick-fact-card.primary:hover {
    border-color: var(--gold);
}

.fact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 31, 91, 0.2);
}

.quick-fact-card.primary .fact-icon-wrapper {
    background: white;
}

.fact-icon-wrapper i {
    color: var(--gold);
    font-size: 30px;
}

.quick-fact-card.primary .fact-icon-wrapper i {
    color: var(--navy);
}

.fact-content {
    flex: 1;
}

.fact-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.quick-fact-card.primary .fact-number {
    color: var(--gold);
}

.fact-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--navy);
}

.quick-fact-card.primary .fact-content h4 {
    color: white;
}

.fact-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.quick-fact-card.primary .fact-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .enhanced-section-header h1 {
        font-size: 30px;
    }
    
    .enhanced-section-header p {
        font-size: 16px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .quick-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-fact-card {
        padding: 25px;
    }
}

/* Contact Benefits Section */
.contact-benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-showcase-card {
    background: white;
    padding: 45px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.benefit-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.benefit-showcase-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.benefit-showcase-icon i {
    color: white;
    font-size: 38px;
}

.benefit-showcase-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-showcase-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: white;
}

.contact-cards-row {
    margin-bottom: 40px;
}

.contact-cards-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.consultation-row {
    width: 100%;
}

.consultation-box-full {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 31, 91, 0.12);
    border: 2px solid rgba(0, 31, 91, 0.08);
    position: relative;
    overflow: hidden;
}

.consultation-box-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
}

.consultation-box-full:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 31, 91, 0.18);
}

.consultation-box-full h3 {
    text-align: center;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.consultation-box-full h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #f39c12);
    border-radius: 2px;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.qrcode-section {
    display: flex;
    justify-content: center;
}

.qrcode-display {
    background: white;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 31, 91, 0.1);
    border: 2px solid rgba(243, 156, 18, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.qrcode-display:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(243, 156, 18, 0.2);
    border-color: var(--gold);
}

.qrcode-display img {
    max-width: 200px;
    border-radius: 20px;
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}

.qrcode-display:hover img {
    border-color: var(--gold);
}

.qrcode-display p {
    color: var(--navy);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.benefits-section {
    display: flex;
    align-items: center;
}

.benefits-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 31, 91, 0.06);
    border: 2px solid rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(135deg, #fff9f0 0%, white 100%);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-item h4 {
    color: var(--navy);
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.compact-contact-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.compact-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.compact-contact-card.primary {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
    border-color: var(--navy);
}

.compact-contact-card.primary:hover {
    border-color: var(--gold);
}

.compact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 31, 91, 0.2);
}

.compact-contact-card.primary .compact-icon-wrapper {
    background: white;
}

.compact-icon-wrapper i {
    color: var(--gold);
    font-size: 26px;
}

.compact-contact-card.primary .compact-icon-wrapper i {
    color: var(--navy);
}

.compact-details h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.compact-contact-card.primary .compact-details h4 {
    color: white;
}

.compact-details p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

.compact-contact-card.primary .compact-details p {
    color: rgba(255, 255, 255, 0.9);
}

.consultation-wrapper {
    display: flex;
    justify-content: center;
}

.consultation-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    border: 2px solid rgba(0, 31, 91, 0.1);
    width: 100%;
}

.consultation-box:hover {
    border-color: var(--gold);
}

.consultation-box h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
}

.qrcode-display {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 20px;
}

.qrcode-display img {
    max-width: 180px;
    border-radius: 15px;
    background: white;
    padding: 15px;
    margin-bottom: 15px;
}

.qrcode-display p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 31, 91, 0.05);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 20px;
}

.benefit-item h4 {
    color: var(--navy);
    font-size: 15px;
    margin: 0;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.location-item {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 31, 91, 0.12);
    border-color: var(--gold);
}

.location-item i {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 15px;
}

.location-item h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 8px;
}

.location-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-item {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 31, 91, 0.15);
    border-color: var(--gold);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 31, 91, 0.2);
}

.why-choose-icon i {
    color: var(--gold);
    font-size: 36px;
}

.why-choose-item h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 15px;
}

.why-choose-item p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .benefits-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-showcase-card {
        padding: 35px 25px;
    }
    
    .contact-cards-grid-full {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid-full {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-box-full {
        padding: 35px 25px;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consultation-box-full h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .qrcode-display {
        padding: 25px 20px;
    }
    
    .qrcode-display img {
        max-width: 160px;
        padding: 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
}
