/* ========================================
   Barley Hair Transplant - Main Stylesheet
   ======================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fafafa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            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: #2c3e50;
        }
        
        .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: #2c3e50;
            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: #555;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover, nav a.active {
            color: #e74c3c;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 5px 20px rgba(231,76,60,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(231,76,60,0.4);
        }
        
        .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;
            border-radius: 0 0 40px 40px;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(44,62,80,0.3) 0%, rgba(44,62,80,0.7) 100%);
            border-radius: 0 0 40px 40px;
            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: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(231,76,60,0.3);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: white;
            color: #2c3e50;
        }
        
        .hero-nav {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .hero-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Section */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            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: #2c3e50;
            margin-bottom: 20px;
        }
        
        .about-text p {
            color: #666;
            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: #f8f9fa;
            padding: 25px;
            border-radius: 20px;
            text-align: center;
        }
        
        .stat-box h3 {
            font-size: 32px;
            color: #e74c3c;
            margin-bottom: 5px;
        }
        
        .stat-box p {
            color: #666;
            font-size: 14px;
            margin: 0;
        }
        
        .about-video {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        .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: #f8f9fa;
            padding: 40px 30px;
            border-radius: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .why-choose-card:hover {
            transform: translateY(-10px);
            background: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }
        
        .why-choose-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: white;
        }
        
        .why-choose-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .why-choose-card p {
            color: #666;
            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,0,0,0.08);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: white;
        }
        
        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .service-card p {
            color: #666;
            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,0,0,0.1);
        }
        
        .tech-video video {
            width: 100%;
            display: block;
        }
        
        .tech-text h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .tech-text p {
            color: #666;
            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: #e74c3c;
            font-size: 24px;
            margin-top: 3px;
        }
        
        .tech-feature span {
            color: #555;
        }
        
        /* 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,0,0,0.1);
            aspect-ratio: 1;
        }
        
        .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, rgba(0,0,0,0.8));
            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(280px, 1fr));
            gap: 25px;
        }
        
        .photo-item {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            aspect-ratio: 1;
        }
        
        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .photo-caption {
            background: white;
            padding: 20px;
            text-align: center;
        }
        
        .photo-caption h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .photo-caption p {
            color: #666;
            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: #f8f9fa;
            padding: 40px;
            border-radius: 30px;
        }
        
        .testimonial-stars {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .testimonial-text {
            color: #555;
            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: linear-gradient(135deg, #e74c3c, #c0392b);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 24px;
        }
        
        .testimonial-info h4 {
            color: #2c3e50;
            margin-bottom: 3px;
        }
        
        .testimonial-info p {
            color: #999;
            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,0,0,0.1);
        }
        
        .hospital-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .hospital-caption {
            background: white;
            padding: 20px;
        }
        
        .hospital-caption h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .hospital-caption p {
            color: #666;
            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: #f8f9fa;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .location-item:hover {
            background: #e74c3c;
            color: white;
        }
        
        .location-item i {
            font-size: 28px;
            margin-bottom: 10px;
            display: block;
        }
        
        .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,0,0,0.05);
        }
        
        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: #2c3e50;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            color: #e74c3c;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            color: #666;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Contact */
        .contact {
            background: white;
        }
        
        .contact-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }
        
        .contact-item {
            background: #2c3e50;
            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,0,0,0.15);
        }
        
        .contact-item i {
            font-size: 42px;
            color: #e74c3c;
            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;
        }
        
        .qrcode-box {
            background: white;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
            margin-top: 30px;
            display: none;
        }
        
        .qrcode-box img {
            width: 200px;
            height: 200px;
            object-fit: contain;
            border-radius: 15px;
        }
        
        .qrcode-box p {
            color: #2c3e50;
            margin-top: 10px;
            font-weight: 500;
        }
        
        /* Copy notification */
        .copy-notification {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            background: #2c3e50;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 9999;
            display: none;
            align-items: center;
            gap: 10px;
        }
        
        .copy-notification.show {
            display: flex;
            animation: slideIn 0.3s ease;
        }
        
        .copy-notification i {
            color: #4ade80;
        }
        
        @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,0,0,0.2);
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            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;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: #e74c3c;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: #999;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 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;
        }
        
        /* About Image */
        .about-image {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #e74c3c, #c0392b);
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
        }
        
        .timeline-content {
            position: relative;
            width: 45%;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-right: auto;
        }
        
        .timeline-content h3 {
            color: #e74c3c;
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .timeline-content p {
            color: #666;
            line-height: 1.7;
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #e74c3c;
            border: 4px solid white;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2);
            z-index: 1;
        }
        
        /* Values */
        .values {
            background: white;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            background: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: white;
        }
        
        .value-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .value-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: row;
            }
            
            .hamburger {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 60%;
                max-width: 240px;
                height: 100vh;
                background: white;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                transition: right 0.3s ease;
                padding-top: 70px;
                z-index: 1000;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                padding: 15px;
            }
            
            nav ul li {
                width: 100%;
                text-align: center;
            }
            
            nav a {
                font-size: 16px;
                padding: 8px 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;
            }
            
            /* Timeline Responsive */
            .timeline::before {
                left: 20px;
            }
            
            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
            }
            
            .timeline-dot {
                left: 20px;
            }
            
            .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;
            }
        }

        /* Achievements Grid */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .achievement-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .achievement-card:hover {
            transform: translateY(-10px);
            background: white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }
        
        .achievement-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: white;
        }
        
        .achievement-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .achievement-card p {
            color: #666;
            font-size: 14px;
        }
        
        /* Patents Section */
        .patents-section {
            background: white;
        }
        
        .patents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .patent-item {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .patent-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }
        
        .patent-image {
            aspect-ratio: 1;
        }
        
        .patent-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            background: white;
        }

        /* 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,0,0,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,0,0,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: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }

        .service-detail-content h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .service-detail-content p {
            color: #666;
            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: 12px 18px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .service-feature-item:hover {
            background: #fff5f5;
            transform: translateX(5px);
        }

        .service-feature-item i {
            color: #e74c3c;
            font-size: 14px;
        }

        .service-feature-item span {
            color: #2c3e50;
            font-size: 14px;
            font-weight: 500;
        }

        /* Responsive for Service Details */
        @media (max-width: 768px) {
            .service-details-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-detail-image {
                height: 220px;
            }

            .service-detail-content {
                padding: 25px;
            }

            .service-detail-content h3 {
                font-size: 20px;
            }
        }

        /* Featured Technology Section */
        .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,0,0,0.15);
        }

        .featured-tech-video video {
            width: 100%;
            display: block;
        }

        .featured-tech-content h3 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .featured-tech-content p {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .featured-tech-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .featured-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .featured-feature:hover {
            background: #fff5f5;
            transform: translateY(-5px);
        }

        .featured-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .featured-feature-text h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .featured-feature-text p {
            color: #666;
            margin: 0;
            font-size: 14px;
        }

        /* 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,0,0,0.08);
            transition: all 0.3s;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .tech-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: white;
        }

        .tech-card h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .tech-card h4 {
            color: #e74c3c;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
        }

        .tech-card p {
            color: #666;
            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: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .tech-card-feature:hover {
            background: #fff5f5;
            transform: translateX(5px);
        }

        .tech-card-feature i {
            color: #e74c3c;
            font-size: 14px;
        }

        .tech-card-feature span {
            color: #2c3e50;
            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,0,0,0.08);
            transition: all 0.3s;
            position: relative;
        }

        .comparison-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .comparison-card.primary {
            border: 3px solid #e74c3c;
        }

        .comparison-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            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 #f0f0f0;
        }

        .comparison-header i {
            font-size: 36px;
            color: #e74c3c;
            margin-bottom: 15px;
        }

        .comparison-header h3 {
            color: #2c3e50;
            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 #f0f0f0;
        }

        .comparison-feature:last-child {
            border-bottom: none;
        }

        .comparison-label {
            color: #666;
            font-size: 14px;
            font-weight: 500;
        }

        .comparison-value {
            color: #2c3e50;
            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 Detailed 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,0,0,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,0,0,0.12);
        }

        .patent-detail-image {
            width: 100%;
            height: 200px;
            background: #f8f9fa;
            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: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .patent-detail-content h4 {
            color: #2c3e50;
            margin-bottom: 12px;
            font-size: 18px;
        }

        .patent-detail-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        /* Doctors Section */
        .doctors-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            display: inline-block;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            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: #2c3e50;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .doctors-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }

        .doctor-profile {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }

        .doctor-profile:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .doctor-photo-wrapper {
            position: relative;
            width: 100%;
            height: 461px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            background: #f8f9fa;
        }

        .doctor-photo {
            width: 314px;
            height: 461px;
            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: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            box-shadow: 0 5px 20px rgba(231,76,60,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: #2c3e50;
            margin-bottom: 8px;
        }

        .doctor-position {
            font-size: 15px;
            color: #e74c3c;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .doctor-bio {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .doctor-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .expertise-tag {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #2c3e50;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .expertise-tag:hover {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
        }

        /* Why Choose Section */
        .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 #f0f0f0;
            transition: all 0.4s ease;
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .feature-card.enhanced:hover {
            border-color: #e74c3c;
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(231,76,60,0.1);
        }

        .feature-icon-wrapper {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 8px 25px rgba(231,76,60,0.2);
        }

        .feature-content h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 12px;
        }

        .feature-content p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        .trust-indicators {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            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;
        }

        .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 */
        @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;
            }
        }

        /* Responsive for Technology Page */
        @media (max-width: 768px) {
            .featured-tech {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .featured-tech-features {
                grid-template-columns: 1fr;
            }

            .tech-cards-grid {
                grid-template-columns: 1fr;
            }

            .comparison-cards {
                grid-template-columns: 1fr;
            }

            .patents-detailed-grid {
                grid-template-columns: 1fr;
            }

            .featured-tech-content h3 {
                font-size: 24px;
            }
        }

        /* Cases Section Styles */
        .cases-section {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 12px 28px;
            border: 2px solid #e74c3c;
            background: white;
            color: #e74c3c;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            background: #e74c3c;
            color: white;
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
        }

        .cases-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        .case-item {
            border-radius: 20px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            opacity: 1;
        }

        .case-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .case-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .case-item:hover img {
            transform: scale(1.05);
        }

        /* Results Stats Section */
        .results-stats-section {
            padding: 100px 0;
            background: white;
        }

        .results-stats-section .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .stat-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 40px;
            border-radius: 30px;
            text-align: center;
            border: 2px solid #f0f0f0;
            transition: all 0.4s ease;
        }

        .stat-card:hover {
            border-color: #e74c3c;
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
        }

        .stat-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 32px;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
        }

        .stat-card .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: #e74c3c;
            margin-bottom: 8px;
        }

        .stat-card .stat-label {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .stat-card .stat-description {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
        }

        /* Responsive for Cases Page */
        @media (max-width: 768px) {
            .cases-section,
            .results-stats-section {
                padding: 60px 0;
            }

            .category-filters {
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .cases-gallery {
                grid-template-columns: 1fr;
            }

            .case-item img {
                height: 300px;
            }

            .stat-card {
                padding: 30px;
            }

            .stat-card .stat-number {
                font-size: 28px;
            }
        }

        /* Enhanced Section Header */
        .enhanced-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 8px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .enhanced-section-header h2 {
            font-size: 42px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .enhanced-section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* FAQ Categories Section */
        .faq-categories {
            padding: 100px 0;
            background: linear-gradient(180deg, #fafafa 0%, white 100%);
        }

        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 50px;
            padding: 20px;
            background: white;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }

        .category-tab {
            padding: 14px 32px;
            border: 2px solid #f0f0f0;
            background: #f8f9fa;
            color: #666;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-tab:hover {
            border-color: #e74c3c;
            color: #e74c3c;
            transform: translateY(-2px);
        }

        .category-tab.active {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
        }

        .faq-category {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .faq-category.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Quick Facts Section */
        .quick-facts-section {
            padding: 100px 0;
            background: white;
        }

        .quick-facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .quick-fact-card {
            background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
            border: 2px solid #f0f0f0;
            padding: 40px;
            border-radius: 30px;
            display: flex;
            gap: 20px;
            align-items: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .quick-fact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #e74c3c, transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .quick-fact-card:hover {
            transform: translateY(-10px);
            border-color: #e74c3c;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .quick-fact-card:hover::before {
            opacity: 1;
        }

        .quick-fact-card.primary {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border: none;
        }

        .quick-fact-card.primary .fact-content h4,
        .quick-fact-card.primary .fact-content p {
            color: white;
        }

        .quick-fact-card.primary .fact-number {
            color: #e74c3c;
        }

        .quick-fact-card.primary .fact-icon-wrapper {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        }

        .fact-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 28px;
            transition: transform 0.3s;
        }

        .quick-fact-card:hover .fact-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .fact-content {
            flex: 1;
        }

        .fact-number {
            display: block;
            font-size: 32px;
            font-weight: 800;
            color: #e74c3c;
            margin-bottom: 8px;
            line-height: 1;
        }

        .fact-content h4 {
            color: #2c3e50;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .fact-content p {
            color: #666;
            font-size: 14px;
            margin: 0;
            line-height: 1.5;
        }

        /* Responsive for FAQ Page */
        @media (max-width: 768px) {
            .enhanced-section-header h2 {
                font-size: 32px;
            }

            .enhanced-section-header p {
                font-size: 16px;
            }

            .category-tabs {
                padding: 15px;
            }

            .category-tab {
                padding: 12px 24px;
                font-size: 14px;
            }

            .quick-facts-grid {
                grid-template-columns: 1fr;
            }

            .quick-fact-card {
                padding: 30px;
                flex-direction: column;
                text-align: center;
            }

            .fact-icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .fact-number {
                font-size: 28px;
            }
        }

        /* Contact Page New Compact Styles */
        .contact-main {
            padding: 60px 0 40px 0;
            background: linear-gradient(180deg, #fafafa 0%, white 100%);
        }

        .compact-contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .contact-cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .compact-contact-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            gap: 15px;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .compact-contact-card:hover {
            border-color: #e74c3c;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.12);
        }

        .compact-contact-card.primary {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border: none;
        }

        .compact-contact-card.primary .compact-icon-wrapper {
            background: rgba(255, 255, 255, 0.2);
        }

        .compact-contact-card.primary .compact-details h4,
        .compact-contact-card.primary .compact-details p {
            color: white;
        }

        .compact-icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 22px;
            transition: transform 0.3s ease;
        }

        .compact-contact-card:hover .compact-icon-wrapper {
            transform: scale(1.08) rotate(3deg);
        }

        .compact-details h4 {
            color: #2c3e50;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .compact-details p {
            color: #666;
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .consultation-wrapper {
            position: sticky;
            top: 20px;
        }

        .consultation-box {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border-radius: 24px;
            padding: 30px;
            color: white;
        }

        .consultation-box h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: white;
            text-align: center;
        }

        .qrcode-display {
            background: white;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }

        .qrcode-display img {
            max-width: 150px;
            height: auto;
            margin-bottom: 10px;
            border-radius: 8px;
        }

        .qrcode-display p {
            color: #2c3e50;
            margin: 0;
            font-size: 13px;
            font-weight: 600;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .benefit-item {
            display: flex;
            gap: 10px;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: 12px;
        }

        .benefit-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 15px;
        }

        .benefit-item h4 {
            color: white;
            font-size: 13px;
            font-weight: 600;
            margin: 0;
        }

        /* Adjust spacing for locations section */
        .locations {
            padding-top: 20px !important;
        }

        /* Copy Toast Notification */
        .copy-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 18px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .copy-toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .copy-toast i {
            color: #2ecc71;
            margin-right: 10px;
        }

        /* Responsive for Contact Page */
        @media (max-width: 900px) {
            .compact-contact-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .consultation-wrapper {
                position: static;
            }
        }

        @media (max-width: 600px) {
            .contact-main {
                padding: 40px 0 30px 0;
            }

            .contact-cards-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .compact-contact-card {
                padding: 16px;
            }

            .compact-icon-wrapper {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }

            .consultation-box {
                padding: 24px;
            }

            .benefits-grid {
                grid-template-columns: 1fr 1fr;
            }

            .qrcode-display img {
                max-width: 130px;
            }

            .copy-toast {
                padding: 15px 25px;
                font-size: 14px;
                bottom: 20px;
            }
        }

        /* Service Detail Section Styles */
        .service-detail-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #fafafa 0%, white 100%);
        }

        .service-overview-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

        .service-overview-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }

        .service-overview-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .service-overview-content h3 {
            color: #2c3e50;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .service-overview-content p {
            color: #666;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .overview-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .overview-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #2c3e50;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 0;
        }

        .overview-features li i {
            color: #e74c3c;
            font-size: 18px;
        }

        /* GEO Section Styles */
        .geo-section {
            margin-bottom: 60px;
        }

        .geo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .geo-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 35px;
            transition: all 0.3s ease;
        }

        .geo-card:hover {
            border-color: #e74c3c;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(231,76,60,0.15);
        }

        .geo-card.primary {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border: none;
        }

        .geo-card.primary h3,
        .geo-card.primary li {
            color: white !important;
        }

        .geo-card.primary li strong {
            color: #e74c3c;
        }

        .geo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 28px;
        }

        .geo-card h3 {
            color: #2c3e50;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .geo-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .geo-card li {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
        }

        .geo-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #e74c3c;
            font-weight: 700;
        }

        .geo-card.primary li:before {
            color: #e74c3c;
        }

        /* Procedure Steps Section */
        .procedure-steps-section {
            margin-bottom: 60px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .step-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 18px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            border-color: #e74c3c;
            transform: translateY(-5px);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
            color: white;
            font-size: 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px auto;
        }

        .step-card h4 {
            color: #2c3e50;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step-card p {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 80px 0;
            background: white;
        }

        /* Responsive for Service Detail Pages */
        @media (max-width: 1200px) {
            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .service-overview-grid {
                grid-template-columns: 1fr;
            }

            .geo-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .service-detail-section {
                padding: 50px 0;
            }

            .service-overview-card {
                padding: 25px;
            }

            .geo-card {
                padding: 25px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .step-card {
                padding: 25px;
            }
        }
    