
/* CSS FILE CONTENT */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --neon-purple: #8b5cf6;
    --neon-pink: #ec4899;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* Overlay gelap 50% */
        url('../images/hero-background.jpg'); /* Ganti nama file sesuai gambar Anda */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efek parallax - opsional */
    min-height: 100vh;
    position: relative;
}

/* Jika ingin overlay lebih gelap, ubah 0.5 menjadi 0.7 */
.hero-section-dark {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

/* Atau jika ingin overlay dengan warna ungu sesuai branding */
.hero-section-purple {
    background: 
        linear-gradient(rgba(139, 92, 246, 0.4), rgba(167, 139, 250, 0.4)), /* Overlay ungu */
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

/* Pastikan overlay di HTML tetap ada untuk styling tambahan */
.hero-overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
/* Neon Text Effect */
.neon-text {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Feature Cards */
.features-section {
    padding: 100px 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon i {
    color: var(--primary-color);
}

.satisfaction-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}

.badge-text {
    font-size: 1.5rem;
    line-height: 1;
}

.badge-subtext {
    font-size: 0.7rem;
    line-height: 1;
}

.badge-guarantee {
    font-size: 0.6rem;
    line-height: 1;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card .service-icon {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-detail-card .service-icon i {
    font-size: 3rem;
    color: white;
}

.service-detail-card h4 {
    padding: 1rem 2rem 0;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    padding: 0 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-list li:before {
    content: "✓";
    color: var(--success-color);
    margin-right: 0.5rem;
}

.price-range {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    margin: 0;
    color: var(--primary-color);
}

.testimonial-rating {
    color: var(--warning-color);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

/* Location Cards */
.location-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.contact-info .contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.contact-info .contact-item:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Guarantee Section */
.guarantee-section {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Hero Contact */
.contact-hero {
  background: url('../images/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  height: 50vh;
  position: relative;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}



/* CSS FILE CONTENT */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --neon-purple: #8b5cf6;
    --neon-pink: #ec4899;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* Overlay gelap 50% */
        url('../images/hero-background.jpg'); /* Ganti nama file sesuai gambar Anda */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efek parallax - opsional */
    min-height: 100vh;
    position: relative;
}

/* Jika ingin overlay lebih gelap, ubah 0.5 menjadi 0.7 */
.hero-section-dark {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

/* Atau jika ingin overlay dengan warna ungu sesuai branding */
.hero-section-purple {
    background: 
        linear-gradient(rgba(139, 92, 246, 0.4), rgba(167, 139, 250, 0.4)), /* Overlay ungu */
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

/* Pastikan overlay di HTML tetap ada untuk styling tambahan */
.hero-overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
/* Neon Text Effect */
.neon-text {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Feature Cards */
.features-section {
    padding: 100px 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon i {
    color: var(--primary-color);
}

.satisfaction-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}

.badge-text {
    font-size: 1.5rem;
    line-height: 1;
}

.badge-subtext {
    font-size: 0.7rem;
    line-height: 1;
}

.badge-guarantee {
    font-size: 0.6rem;
    line-height: 1;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card .service-icon {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-detail-card .service-icon i {
    font-size: 3rem;
    color: white;
}

.service-detail-card h4 {
    padding: 1rem 2rem 0;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    padding: 0 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-list li:before {
    content: "✓";
    color: var(--success-color);
    margin-right: 0.5rem;
}

.price-range {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    margin: 0;
    color: var(--primary-color);
}

.testimonial-rating {
    color: var(--warning-color);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

/* Location Cards */
.location-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.contact-info .contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.contact-info .contact-item:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Guarantee Section */
.guarantee-section {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Hero Contact */
.contact-hero {
  background: url('../images/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  height: 50vh;
  position: relative;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#services { width: 100%; height: 100vh; /* full tinggi layar */ } .swiper { width: 100%; height: 100%; } .swiper-slide { display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-repeat: no-repeat; height: 100%; /* pastikan ikut penuh */ min-height: 100vh; /* biar ga tipis */ position: relative; } .swiper-slide .text-center { position: relative; z-index: 2; color: white; text-align: center; max-width: 700px; }
