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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #fefefe;
            overflow-x: hidden;
        }

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

        /* Animated Background Elements */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: -10s;
            animation-duration: 18s;
        }

        .floating-element:nth-child(4) {
            bottom: 15%;
            right: 10%;
            animation-delay: -15s;
            animation-duration: 22s;
        }

        .floating-element:nth-child(5) {
            top: 50%;
            left: 5%;
            animation-delay: -7s;
            animation-duration: 16s;
        }

        .floating-element:nth-child(6) {
            top: 60%;
            right: 5%;
            animation-delay: -12s;
            animation-duration: 24s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
        }

        /* Pulse animation for medical crosses */
        .pulse-element {
            animation: pulse 3s infinite ease-in-out;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.2;
            }
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo img {
            height: 60px;
            width: auto;
        }

        .logo-text {
            color: #b8860b;
            font-size: 24px;
            font-weight: bold;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 5px;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #b8860b;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover {
            color: #b8860b;
            background-color: rgba(184, 134, 11, 0.1);
        }

        .nav-menu a:hover::after {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            animation: shimmer 10s infinite ease-in-out;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.5; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: normal;
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            from { text-shadow: 0 0 10px rgba(255,255,255,0.3); }
            to { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeIn 1.5s ease-out 0.5s both;
        }

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

        .cta-button {
            background: white;
            color: #b8860b;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            animation: bounceIn 2s ease-out 1s both;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(184, 134, 11, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            background: #f8f5f0;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Sections */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #b8860b;
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            animation: slideInDown 1s ease-out forwards;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #b8860b;
            animation: expandLine 1s ease-out 0.5s forwards;
        }

        @keyframes expandLine {
            from { width: 0; }
            to { width: 80px; }
        }

        /* About Section */
        .about {
            background: #f8f5f0;
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="medical-pattern" width="200" height="200" patternUnits="userSpaceOnUse"><g fill="rgba(184,134,11,0.05)"><path d="M100 80 L100 120 M80 100 L120 100" stroke="rgba(184,134,11,0.05)" stroke-width="2"/></g></pattern></defs><rect width="100%" height="100%" fill="url(%23medical-pattern)"/></svg>');
            opacity: 0.3;
            animation: patternMove 20s infinite linear;
        }

        @keyframes patternMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(200px) translateY(200px); }
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text {
            font-size: 1.1em;
            line-height: 1.8;
            opacity: 0;
            animation: fadeInLeft 1s ease-out 0.3s forwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-image {
            text-align: center;
            opacity: 0;
            animation: fadeInRight 1s ease-out 0.5s forwards;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .doctor-placeholder {
            width: 300px;
            height: 400px;
            background: linear-gradient(135deg, #b8860b, #daa520);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .doctor-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(0deg) translateX(-100%); }
            100% { transform: rotate(0deg) translateX(100%); }
        }

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

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(184,134,11,0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: #b8860b;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon::after {
            width: 120px;
            height: 120px;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg);
            background: #daa520;
        }

        /* Contact */
        .contact {
            background: #f8f5f0;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heartbeat" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10 50 L20 50 L25 30 L30 70 L35 20 L40 80 L45 50 L90 50" stroke="rgba(184,134,11,0.05)" stroke-width="1" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23heartbeat)"/></svg>');
            opacity: 0.3;
            animation: heartbeat 2s infinite ease-in-out;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.5; }
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.3s forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .contact-item:nth-child(1) { animation-delay: 0.5s; }
        .contact-item:nth-child(2) { animation-delay: 0.6s; }
        .contact-item:nth-child(3) { animation-delay: 0.7s; }
        .contact-item:nth-child(4) { animation-delay: 0.8s; }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: #b8860b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .contact-icon:hover {
            background: #daa520;
            transform: rotate(360deg);
        }

        .appointment-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            opacity: 0;
            animation: slideInRight 1s ease-out 0.5s forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 10px rgba(184,134,11,0.2);
            transform: scale(1.02);
        }

        .submit-btn {
            background: #b8860b;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .submit-btn:hover {
            background: #daa520;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(184,134,11,0.1), transparent);
            animation: footerShine 4s infinite;
        }

        @keyframes footerShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2em;
            }

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

            .section-title {
                font-size: 2em;
            }

            .floating-element {
                display: none;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Scroll reveal animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }


/* Ripple effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            transform: scale(0);
            animation: ripple-animation 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple-animation {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Additional hover effects */
        .service-card h3 {
            transition: color 0.3s ease;
        }

        .service-card:hover h3 {
            color: #b8860b;
        }

        .contact-item:hover .contact-icon {
            animation: bounce 0.5s ease;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Loading animation for iframe */
        .form-container {
            position: relative;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(184,134,11,0.1), transparent);
            animation: loading 2s infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes loading {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .form-container iframe {
            position: relative;
            z-index: 2;
        }
        
        /* RESPONSIVE ADDED */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image,
    .about-text,
    .contact-info,
    .appointment-form {
        text-align: center;
    }

    .doctor-placeholder {
        width: 250px;
        height: 350px;
    }

    .nav-menu {
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    header .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .section-title {
        font-size: 2em;
    }

    .logo-text {
        font-size: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .doctor-placeholder {
        width: 220px;
        height: 320px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 0.95em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .service-card {
        padding: 18px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    footer {
        padding: 20px 0;
        font-size: 14px;
    }

    .doctor-placeholder {
        width: 180px;
        height: 280px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .header-content {
        flex-direction: column;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5em;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 18px;
    }

    .logo-text {
        font-size: 16px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 10px;
    }

    .form-group label {
        font-size: 14px;
    }

    .doctor-placeholder {
        width: 160px;
        height: 260px;
        font-size: 15px;
    }

    .section-title {
        font-size: 1.6em;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}
img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none; /* opsional: jika ingin gambar tidak bisa diklik sama sekali */
}

.foto-dokter {
    width: 293px; /* atau sesuaikan */
    height: 399px; /* atau sesuaikan */
    background-image: url('dr.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

