:root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --primary-light: #e8f0fe;
            --secondary: #34a853;
            --accent: #ea4335;
            --light: #f8f9fa;
            --dark: #202124;
            --gray: #5f6368;
            --border: #dadce0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ==================== HEADER & NAVBAR ANIMATIF ==================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }
        
        header.scrolled {
            padding: 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        
        .header-top {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 10px 0;
            transform-origin: top;
            transition: var(--transition);
            overflow: hidden;
        }
        
        header.scrolled .header-top {
            transform: scaleY(0);
            height: 0;
            padding: 0;
            opacity: 0;
        }
        
        .header-info {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        
        .info-item:hover {
            transform: translateY(-2px);
        }
        
        .info-item i {
            transition: var(--transition);
        }
        
        .info-item:hover i {
            color: var(--secondary);
            transform: scale(1.2);
        }
        
        /* Main Header dengan animasi */
        .main-header {
            padding: 3px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        header.scrolled .main-header {
            padding: 10px 0;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
            transition: var(--transition);
        }
        
        header.scrolled .logo-section {
            transform: scale(0.95);
        }
        
        .logo {
            height: 60px;
            width: auto;
            transition: var(--transition);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        .logo:hover {
            transform: rotate(-5deg) scale(1.05);
        }
        
        .hospital-name h1 {
            color: var(--primary-dark);
            font-size: 1rem;
            margin-bottom: 5px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: var(--transition);
        }
        
        .hospital-name p {
            color: var(--gray);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        /* Navigation dengan efek glassmorphism */
        nav {
            position: relative;
        }
        
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            padding: 8px;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
        }
        
        nav li {
            position: relative;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        nav a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        nav a:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
        }
        
        nav a i {
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        nav a:hover i {
            transform: translateY(-2px) scale(1.1);
        }
        
        nav a.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4); }
            50% { box-shadow: 0 4px 25px rgba(26, 115, 232, 0.6); }
            100% { box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4); }
        }
        
        /* Indicator untuk menu aktif */
        .nav-indicator {
            position: absolute;
            bottom: -10px;
            left: 0;
            height: 3px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
        }
        
        /* Mobile Menu Button dengan animasi hamburger */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            z-index: 1002;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 6px 25px rgba(26, 115, 232, 0.5);
        }
        
        .hamburger {
            position: relative;
            width: 24px;
            height: 18px;
            margin: 0 auto;
        }
        
        .hamburger span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        
        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 8px; }
        .hamburger span:nth-child(3) { top: 16px; }
        
        .mobile-menu-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg);
            top: 8px;
        }
        
        .mobile-menu-btn.active .hamburger span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg);
            top: 8px;
        }
        
        /* Mobile Menu Overlay dengan animasi */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 100px 30px 30px;
            z-index: 1000;
            transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
            list-style: none;
        }
        
        .mobile-menu li {
            opacity: 0;
            transform: translateX(30px);
        }
        
        .mobile-menu.active li {
            animation: slideIn 0.5s forwards;
        }
        
        .mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
        .mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
        .mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
        .mobile-menu li:nth-child(5) { animation-delay: 0.5s; }
        .mobile-menu li:nth-child(6) { animation-delay: 0.6s; }
        
        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .mobile-menu a:hover,
        .mobile-menu a.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
        }
        
        .mobile-menu a i {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 20px rgba(26, 115, 232, 0.4);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(26, 115, 232, 0.6);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
            rgba(26, 115, 232, 0.55),
            rgba(13, 71, 161, 0.65)
        ),
        url('rsgs.png') no-repeat center center;
            background-size: cover;
            background-position: center;
        }
        
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s forwards;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0;
            animation: fadeInUp 1s 0.3s forwards;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            opacity: 0;
            animation: fadeInUp 1s 0.6s forwards;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 8px 25px rgba(52, 168, 83, 0.3);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.5s;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(52, 168, 83, 0.4);
        }
        
        .cta-button:hover::before {
            transform: translateX(0);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--primary-light);
        }
        
        .service-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .service-icon img {
             transition: var(--transition);
            max-width: 200px;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(5deg);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .service-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Doctor Schedule */
        .doctor-schedule {
            background: var(--light);
            padding: 100px 0;
        }
        
        .schedule-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .day-filter {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .day-btn {
            padding: 12px 25px;
            border: 2px solid var(--border);
            background: white;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .day-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        .day-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
        }
        
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .schedule-table th {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .schedule-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }
        
        .schedule-table tr:hover {
            background: var(--primary-light);
            transform: scale(1.01);
        }
        
        .schedule-table tr:last-child td {
            border-bottom: none;
        }
        
        /* News Section */
        .news-section {
            padding: 100px 0;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .news-image {
            height: 220px;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .news-card:hover .news-image {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            color: var(--primary);
            font-size: 0.85rem;
            margin-bottom: 10px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .news-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
            line-height: 1.4;
        }
        
        .news-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .news-author {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray);
            font-size: 0.85rem;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: white;
            z-index: 1;
            border-radius: 20px 20px 0 0;
        }
        
        .modal-header h2 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-right: 20px;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--gray);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            background: var(--light);
            color: var(--primary);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .modal-date {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .modal-text {
            line-height: 1.8;
            font-size: 1.1rem;
            color: var(--dark);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a73e8" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            opacity: 0.3;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo img {
            height: 70px;
            margin-bottom: 20px;
        }
        
        .footer-logo h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-logo p {
            color: #aaa;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            margin-bottom: 25px;
            font-size: 1.3rem;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.95rem;
        }
        
        .footer-contact i {
            color: var(--primary);
            width: 20px;
            font-size: 1.1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            nav ul {
                gap: 0;
            }
            
            nav a {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .hamburger{
                font-size: 0.5rem;
            }
            .header-top {
                display: none;
            }
            #desktopNav {
                display: none;
            }
            
            .hero {
                padding: 150px 0 80px;
                margin-top: 60px;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .logo {
                height: 20px;
            }
            
            .hospital-name h1 {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1rem;
            }
            .section-title p {
                font-size: 0.8rem;
            }
            .day-btn{
                font-size: 0.6rem;
                padding: 0.4rem;
            }
            
            .schedule-table {
                font-size: 0.6rem;
            }
            
            .schedule-table th,
            .schedule-table td {
                padding: 12px 15px;
                font-size: 0.6rem;
            }
        }
        
        @media (max-width: 480px) {
            .mobile-menu {
                width: 280px;
                padding: 80px 20px 20px;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            .header-info {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                justify-content: center;
            }
            
            .info-item {
                justify-content: center;
            }
            
            .services-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                margin: 10px;
            }
            
            .modal-header h2 {
                font-size: 1.4rem;
            }
            
            .modal-body {
                padding: 20px;
            }
        }
        
        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
        /* Selection Color */
        ::selection {
            background-color: var(--primary-light);
            color: var(--primary-dark);
        }
        
        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* No Data Message */
        .no-data {
            text-align: center;
            padding: 60px 20px;
            grid-column: 1 / -1;
        }
        
        .no-data i {
            font-size: 4rem;
            color: var(--gray);
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        .no-data h3 {
            color: var(--gray);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .no-data p {
            color: var(--gray);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }