:root {
            --primary-color: #1d1d1f;
            --accent-color: #0071e3;
            --sulbar-color: #0a5c36;
            --gradient: linear-gradient(135deg, #0071e3 0%, #1d1d1f 100%);
            --section-spacing: 100px;
            --apple-gray: #f5f5f7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            transition: all 0.3s ease;
        }

        body {
            color: var(--primary-color);
            background-color: #ffffff;
            overflow-x: hidden;
            scroll-behavior: smooth;
            padding-top: 80px; /* Untuk mengkompensasi navbar fixed */
        }

        /* Skip to Main Content Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent-color);
            color: white;
            padding: 8px;
            z-index: 9999;
            text-decoration: none;
            transition: top 0.3s ease-in-out;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Main content area for skip link target */
        main {
            outline: none; /* Remove focus outline for main content */
        }

        /* Navigation - Apple Style */

        

        .navbar {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: saturate(180%) blur(20px);
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 8px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--accent-color) !important;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
        }

        .navbar-brand:focus, .logo:focus {
            outline: none;
            box-shadow: none;
        }

        .navbar-brand.logoku {
            padding-left: 15px;
        }

        .navbar-toggler.toogleku {
            padding: 0.25rem 0.75rem;
            font-size: 1.25rem;
            line-height: 1;
            background-color: transparent;
            border: none;
            border-radius: 0.25rem;
            color: var(--primary-color);
            margin-right: 15px;
        }

        .navbar-toggler.toogleku:focus {
            outline: none;
            box-shadow: none;
        }

        .navbar-logo {
            height: 50px;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            text-decoration: none !important;
            display: flex;
            align-items: center;
        }
        
        .logo:hover {
            text-decoration: none !important;
        }
        
        .logo span {
            color: var(--primary);
        }

        .nav-link {
            position: relative;
            padding: 0.5rem 1.2rem !important;
            color: var(--primary-color) !important;
            font-weight: 450;
            font-size: 0.95rem;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover:after,
        .nav-link.active:after {
            width: 70%;
        }

        .btn-apple {
            border-radius: 30px;
            padding: 12px 28px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            border: none;
            transition: transform 0.2s, background 0.3s;
            font-size: 0.95rem;
        }

        .btn-apple:active {
            transform: scale(0.96);
        }

        .btn-apple-primary {
            background: var(--accent-color);
            color: white;
        }

        .btn-apple-secondary {
            background: #e0e0e5;
            color: var(--primary-color);
        }

        .btn-apple-secondary:hover {
            background: #d0d0d5;
        }

        .btn-hosting {
            background: #4da6ff;
        }
        
        .btn-hosting:hover {
            background: #3a8cd8;
        }

        /* Hero Section */
        .hero-section {
            padding: calc(var(--section-spacing) + 50px) 0 80px;
            background: radial-gradient(circle at 50% 100%, #f5f5f7 0%, #ffffff 70%);
            position: relative;
        }

        .hero-title {
            font-size: 4.2rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1.05;
            margin-bottom: 1.5rem;
        }

        .hero-highlight {
            color: var(--accent-color);
            position: relative;
            display: inline-block;
        }

        .hero-highlight:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(0, 113, 227, 0.2);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #86868b;
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.6;
            max-width: 90%;
        }

        .hero-img-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .hero-img-container:hover {
            transform: perspective(1000px) rotateY(0);
        }

        /* Hosting Banner */
        .hosting-banner {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin-top: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .hosting-text {
            display: flex;
            align-items: center;
        }

        .hosting-icon {
            font-size: 2.5rem;
            margin-right: 20px;
            color: #4da6ff;
        }

        /* Services Section */
        .services-section {
            padding: var(--section-spacing) 0;
            background: var(--apple-gray);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            letter-spacing: -0.02em;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #86868b;
            max-width: 700px;
            margin: 0 auto;
        }

        .card-img-top {
            max-height: 300px;
            object-fit: cover;
            width: 100%;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            border: 1px solid #f0f0f0;
            margin-bottom: 30px;
        }

        .service-card:hover, .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(0, 113, 227, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .service-icon i {
            font-size: 2.2rem;
            color: var(--accent-color);
        }

        /* Testimonials */
        .testimonials-section {
            padding: var(--section-spacing) 0;
            background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 20px 0;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:before {
            content: '“';
            position: absolute;
            left: 20px;
            top: 10px;
            font-size: 5rem;
            color: rgba(0, 113, 227, 0.05);
            font-family: Georgia, serif;
            z-index: 0;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        /* Features */
        .features-section {
            padding: var(--section-spacing) 0;
            background: var(--apple-gray);
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            border: 1px solid #f0f0f0;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        /* Social Media */
        .social-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0071e3 0%, #004a99 100%);
            color: white;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            margin: 0 10px;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            color: var(--accent-color);
        }

        .social-icon:hover {
            background: var(--apple-gray);
            transform: translateY(-5px);
        }

        /* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: #0056b3; /* Darker shade on hover */
    transform: scale(1.1);
}

#scrollTopBtn:active {
    transform: scale(0.95);
}

/* Filter Buttons */
.category-filter {
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
}

.category-filter:hover {
    background-color: var(--accent-color);
    color: white;
}

.category-filter.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Pagination */
.pagination .page-item .page-link {
    border-radius: 20px;
    margin: 0 5px;
    border: 1px solid #dee2e6;
    color: var(--primary-color);
    background-color: white;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Dark Mode Filter Buttons */
body.dark-mode .category-filter {
    border: 1px solid #DFD0B8;
    color: #DFD0B8;
    background-color: transparent;
}

body.dark-mode .category-filter:hover,
body.dark-mode .category-filter.active {
    background-color: #DFD0B8;
    color: var(--background-color-dark);
}

/* Dark Mode Pagination */
body.dark-mode .pagination .page-item .page-link {
    border: 1px solid rgba(148, 137, 121, 0.5);
    color: var(--primary-color-dark);
    background-color: var(--surface-color-dark);
}

body.dark-mode .pagination .page-item .page-link:hover {
    background-color: #DFD0B8;
    color: var(--background-color-dark);
    border-color: #DFD0B8;
}

body.dark-mode .pagination .page-item.active .page-link {
    background-color: #DFD0B8;
    color: var(--background-color-dark);
    border-color: #DFD0B8;
}

/* Dark Mode Scroll to Top */
body.dark-mode #scrollTopBtn {
    background: #DFD0B8;
    color: var(--background-color-dark);
    box-shadow: 0 5px 15px rgba(223, 208, 184, 0.2);
}

body.dark-mode #scrollTopBtn:hover {
    background: #c9bba8;
}

.custom-search-input {
    border-radius: 20px;
    border: 1px solid #d2d2d7;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.custom-search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    outline: none;
}

body.dark-mode .custom-search-input {
    background-color: var(--surface-color-dark);
    border-color: rgba(148, 137, 121, 0.5);
    color: var(--primary-color-dark);
    box-shadow: none;
}

body.dark-mode .custom-search-input:focus {
    border-color: var(--primary-color-dark);
    box-shadow: 0 0 0 3px rgba(223, 208, 184, 0.2);
    background-color: var(--surface-color-dark);
}

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: #86868b;
            padding: 80px 0 40px;
        }

        .footer-title {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #86868b;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .copyright {
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #333;
            text-align: center;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Apple-like Form */
        .apple-form .form-control {
            border-radius: 12px;
            border: 1px solid #d2d2d7;
            padding: 1px 18px;
            font-size: 1rem;
            transition: all 0.2s ease;
        }

        .apple-form .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
        }

        .apple-form .form-control.is-invalid {
            border-color: #dc3545;
        }

        .form-message {
            margin-top: 15px;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            display: none; /* Hidden by default */
        }

        .form-message.error {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            display: block;
        }

        .form-message.success {
            background-color: rgba(40, 167, 69, 0.1);
            color: #28a745;
            display: block;
        }

        .btn .fa-spinner {
            margin-right: 8px;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 991.98px) {
            .navbar .container {
                padding-left: 15px;
                padding-right: 15px;
                flex-wrap: nowrap;
            }
            
            .navbar-brand {
                margin-right: auto;
                width: auto;
                text-align: left;
            }
            
            .navbar-toggler {
                margin-left: auto;
                order: 2;
            }
            
            .navbar-collapse {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: saturate(180%) blur(20px);
                padding: 20px;
                padding-bottom: 25px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                z-index: 999;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .navbar-nav {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }
            
            .nav-item {
                margin: 5px 0;
                width: 100%;
            }
            
            .nav-link {
                padding: 12px 15px !important;
                width: 100%;
                position: relative;
                display: block;
            }
            
            /* Hapus garis bawah desktop */
            .nav-link:after {
                display: none !important;
            }
            
            /* Garis bawah mobile */
            .navbar-nav .nav-item .nav-link::after {
                content: '';
                position: absolute;
                bottom: 8px;
                left: 15px;
                width: calc(100% - 30px);
                height: 2px;
                background: var(--accent-color);
                transform: scaleX(0);
                transform-origin: left center;
                transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }
            
            .navbar-nav .nav-item .nav-link:hover::after,
            .navbar-nav .nav-item .nav-link:focus::after,
            .navbar-nav .nav-item .nav-link.active::after,
            .navbar-nav .nav-item.active .nav-link::after {
                transform: scaleX(1);
                transform-origin: right center;
            }
            
            .navbar-nav .nav-item .nav-link:active {
                transform: scale(0.98);
                opacity: 0.9;
            }
            
            .btn-apple {
                width: 100%;
                margin-top: 15px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .hero-section {
                padding: 80px 0;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            

            .navbar {
                padding:  4;
            }
            
            .social-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin: 5px;
            }
            .footer {
                text-align: center;
            }

            .footer .col-lg-4 .d-flex {
                justify-content: center;
            }

            .hosting-banner {
                flex-direction: column;
                padding: 20px;
                text-align: left;
            }

            .hosting-text {
                flex-direction: row;
                align-items: center;
                margin-bottom: 20px;
                width: 100%;
            }

            .hosting-icon {
                font-size: 2rem;
                margin-right: 15px;
                margin-bottom: 0;
            }

            .hosting-banner .btn-hosting {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand.logoku {
                padding-left: 10px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .logo-text {
                font-size: 1.5rem;
            }
            .logo {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .btn-apple {
                padding: 10px 20px;
                width: 100%;
                margin-bottom: 10px;
            }
            .d-flex.gap-4.flex-wrap {
                justify-content: center;
            }
            .navbar-logo {
                height: 40px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
        }

/* Dark Mode Styles */
body.dark-mode {
    --primary-color-dark: #FFFFFF; /* Main text color */
    --secondary-color-dark: #CCCCCC; /* Muted text and subtle accents */
    --surface-color-dark: #393E46;   /* Cards, navbar, etc. */
    --background-color-dark: #222831;/* Deepest background */

    background-color: var(--background-color-dark);
    color: var(--primary-color-dark);
}

body.dark-mode .logo span{
    color: #DFD0B8;
}
body.dark-mode .navbar {
    background: rgba(57, 62, 70, 0.92); /* Surface color with transparency */
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(148, 137, 121, 0.2); /* Subtle border using secondary color */
}

@media (max-width: 991.98px) {
    body.dark-mode .navbar-collapse {
        background: rgba(57, 62, 70, 0.98);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

body.dark-mode .logo,
body.dark-mode .nav-link,
body.dark-mode .navbar-toggler.toogleku {
    color: var(--primary-color-dark) !important;
}

body.dark-mode .nav-link:hover:after,
body.dark-mode .nav-link.active:after {
    background: var(--primary-color-dark);
}

body.dark-mode .hero-section {
    background: var(--background-color-dark);
}

body.dark-mode .hero-title,
body.dark-mode .section-title,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5 {
    color: var(--primary-color-dark);
}

body.dark-mode .hero-subtitle,
body.dark-mode .section-subtitle,
body.dark-mode p,
body.dark-mode small,
body.dark-mode .text-muted {
    color: var(--secondary-color-dark) !important;
}

body.dark-mode .hero-highlight {
    color: var(--primary-color-dark);
}

body.dark-mode .hero-highlight:after {
    background: rgba(223, 208, 184, 0.15);
}

body.dark-mode .service-card,
body.dark-mode .feature-card,
body.dark-mode .testimonial-card,
body.dark-mode .card {
    background: var(--surface-color-dark);
    border: 1px solid rgba(148, 137, 121, 0.2);
    box-shadow: none;
}

body.dark-mode .service-card:hover, 
body.dark-mode .card:hover {
    border-color: rgba(148, 137, 121, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

body.dark-mode .service-icon {
    background: rgba(223, 208, 184, 0.1);
}

body.dark-mode .service-icon i {
    color: var(--primary-color-dark);
}

/* Button Styles */
body.dark-mode .btn-apple {
    background: #DFD0B8;
    color: var(--background-color-dark);
    font-weight: 600;
}

body.dark-mode .btn-apple-primary {
    background: #DFD0B8;
    color: var(--background-color-dark);
    font-weight: 600;
}

body.dark-mode .btn-apple-primary:hover {
    filter: brightness(95%);
}

body.dark-mode .testimonial-text {
    color: var(--primary-color-dark);
}

body.dark-mode .testimonial-card:before {
    color: rgba(223, 208, 184, 0.08);
}

body.dark-mode .social-section {
    background: var(--background-color-dark);
    border-top: 1px solid rgba(148, 137, 121, 0.2);
    border-bottom: 1px solid rgba(148, 137, 121, 0.2);
}

body.dark-mode .social-icon {
    background: var(--surface-color-dark);
    color: var(--primary-color-dark);
}

body.dark-mode .social-icon:hover {
    background: var(--primary-color-dark);
    color: var(--background-color-dark);
}

body.dark-mode .apple-form .form-control {
    background-color: var(--surface-color-dark);
    border-color: rgba(148, 137, 121, 0.5);
    color: var(--primary-color-dark);
}

body.dark-mode .apple-form .form-control::placeholder {
    color: var(--secondary-color-dark);
}

body.dark-mode .apple-form .form-control:focus {
    border-color: var(--primary-color-dark);
    box-shadow: 0 0 0 3px rgba(223, 208, 184, 0.2);
    background-color: var(--surface-color-dark);
}

body.dark-mode .footer {
    background: var(--background-color-dark);
    color: var(--secondary-color-dark);
    border-top: 1px solid rgba(148, 137, 121, 0.2);
}

body.dark-mode .footer-title {
    color: var(--primary-color-dark);
}

body.dark-mode .footer-links a {
    color: var(--secondary-color-dark);
}

body.dark-mode .footer-links a:hover {
    color: var(--primary-color-dark);
}

body.dark-mode .copyright {
    border-top: 1px solid rgba(148, 137, 121, 0.2);
}

body.dark-mode .hosting-banner {
    background: var(--surface-color-dark);
}

body.dark-mode .testimonials-section,
body.dark-mode .services-section,
body.dark-mode .features-section {
    background: var(--background-color-dark);
}

body.dark-mode #darkModeToggle {
    color: var(--primary-color-dark);
}

body.dark-mode #darkModeToggle:hover {
    color: var(--primary-color-dark);
    filter: brightness(85%);
}

body.dark-mode .modal-content {
    background-color: var(--surface-color-dark);
    color: var(--primary-color-dark);
}

body.dark-mode .modal-header {
    border-bottom: 1px solid rgba(148, 137, 121, 0.2);
}

body.dark-mode .modal-header .close {
    color: var(--primary-color-dark);
}

body.dark-mode .modal-footer {
    border-top: 1px solid rgba(148, 137, 121, 0.2);
}

.btn-apple-primary:hover {
    background: #0056b3;
}

.footer-links a:hover, .social-icon:hover {
    opacity: 0.8;
}