:root {
    --dark-bg: #0F172A;
    --primary: #2563EB;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --gray: #64748B;
    --success: #10B981;
    --danger: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-bg);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-bg);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1E293B 100%);
    color: var(--white);
    padding: 100px 0 60px;
    margin-top: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ========== STATS ========== */
.stats {
    padding: 4rem 0;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* ========== SERVICES ========== */
.services-preview,
.about-page,
.services-page,
.portfolio-page,
.contact-page {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin: 0.5rem 0 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #E2E8F0;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #1D4ED8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* ========== PORTFOLIO ========== */
.portfolio-preview {
    background: var(--light-bg);
    padding: 70px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.portfolio-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 1.5rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 70px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #1D4ED8);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}


/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

/* ========== ALERT ========== */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================ */
/* ========== RESPONSIVE (MOBILE FIRST) ========== */
/* ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 80px 0 50px;
        margin-top: 55px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .btn-outline {
        margin-left: auto;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .btn-large {
        width: 90%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        text-align: center;
    }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Landscape orientation fix */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-grid {
        gap: 1rem;
    }
    
    .portfolio-image {
        height: 180px;
    }
}

/* Touch devices hover fix */
@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .portfolio-card:hover .portfolio-image img {
        transform: scale(1.1);
    }
}

/* Hero Image / Illustration */
.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* Efek hover pada gambar */
.hero-img:hover {
    animation: none;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
    .hero-img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-img {
        max-width: 280px;
    }
}

/* Map Section Styles */
.map-container {
    margin-top: 3rem;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-container h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-map, .btn-map-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-map {
    background: var(--primary);
    color: var(--white);
}

.btn-map:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
}

.btn-map-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-map-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.address-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.address-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .map-placeholder {
        height: 300px;
    }
    
    .map-buttons {
        flex-direction: column;
    }
    
    .btn-map, .btn-map-outline {
        justify-content: center;
    }
}

/* ========== SIMPLE PORTFOLIO ========== */
.portfolio-simple {
    padding: 100px 0 70px;
    background: #FFFFFF;
}

/* Project Main */
.project-main {
    text-align: center;
    margin-bottom: 80px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border-radius: 24px;
    border: 1px solid #E2E8F0;
}

.project-main h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.project-main p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 25px;
}

.btn-live-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563EB;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-live-main:hover {
    background: #1D4ED8;
    gap: 15px;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Coming Soon Grid - 5 items */
.coming-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.coming-item {
    text-align: center;
    padding: 30px 15px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.coming-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #2563EB;
}

.coming-item h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 8px;
}

.coming-item p {
    color: #64748B;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .coming-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-simple {
        padding: 80px 0 50px;
    }
    
    .project-main h1 {
        font-size: 2rem;
    }
    
    .coming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .project-main h1 {
        font-size: 1.5rem;
    }
    
    .coming-grid {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Page */
.portfolio-page {
    padding: 100px 0 60px;
    background: #FFFFFF;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-title h1 {
    font-size: 2rem;
    color: #0F172A;
}

.portfolio-title h1 span {
    color: #2563EB;
}

/* Main Project Card */
.main-project {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.main-card {
    background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.main-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0F172A;
}

.main-card p {
    color: #64748B;
    margin-bottom: 20px;
}

.live-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563EB;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.live-demo-btn:hover {
    background: #1D4ED8;
    gap: 15px;
    transform: translateY(-2px);
}

/* Coming Soon Grid - 5 items horizontal */
.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.soon-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
}

.soon-card:hover {
    transform: translateY(-5px);
    border-color: #2563EB;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.soon-card h3 {
    font-size: 1.1rem;
    color: #2563EB;
    margin-bottom: 8px;
}

.soon-card p {
    font-size: 0.8rem;
    color: #64748B;
}

/* Responsive */
@media (max-width: 1024px) {
    .coming-soon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-card {
        padding: 30px 20px;
    }
    
    .main-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== HALAMAN LAYANAN ========== */
.layanan-page {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.layanan-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-layanan {
    display: inline-block;
    background: linear-gradient(135deg, #2563EB15, #1D4ED815);
    color: #2563EB;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.layanan-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.layanan-header h1 span {
    color: #2563EB;
    position: relative;
}

.layanan-header h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 3px;
}

.layanan-header p {
    color: #64748B;
    font-size: 1rem;
}

/* Grid Layanan */
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Layanan */
.layanan-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    position: relative;
}

.layanan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.layanan-card.featured {
    border: 2px solid #2563EB;
    background: linear-gradient(135deg, #FFFFFF, #F8FAFC);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F59E0B;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-badge.best {
    background: linear-gradient(135deg, #10B981, #059669);
}

.layanan-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.layanan-card > p {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Fitur List */
.fitur-list {
    list-style: none;
    margin-bottom: 25px;
}

.fitur-list li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fitur-list li i {
    color: #10B981;
    font-size: 0.8rem;
    width: 18px;
}

/* Harga */
.harga {
    margin-bottom: 25px;
    padding-top: 10px;
    border-top: 1px solid #E2E8F0;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563EB;
}

.price-note {
    font-size: 0.8rem;
    color: #64748B;
}

.price-custom {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563EB;
}

/* Button */
.btn-layanan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #F8FAFC;
    color: #2563EB;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid #E2E8F0;
}

.btn-layanan:hover {
    background: #2563EB;
    color: white;
    gap: 15px;
    border-color: #2563EB;
}

/* CTA Bottom */
.layanan-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 24px;
    color: white;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.layanan-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.layanan-cta p {
    color: #CBD5E1;
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563EB;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #1D4ED8;
    gap: 15px;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .layanan-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .layanan-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .layanan-page {
        padding: 100px 0 50px;
    }
    
    .layanan-card {
        padding: 25px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .layanan-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .layanan-header h1 {
        font-size: 1.6rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .layanan-card h3 {
        font-size: 1.2rem;
    }
}

/* ========== HALAMAN TENTANG ========== */
.tentang-page {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.tentang-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-tentang {
    display: inline-block;
    background: linear-gradient(135deg, #2563EB15, #1D4ED815);
    color: #2563EB;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tentang-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.tentang-header h1 span {
    color: #2563EB;
    position: relative;
}

.tentang-header h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 3px;
}

.tentang-header p {
    color: #64748B;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Profile Section */
.profile-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    margin-bottom: 60px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.profile-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0F172A;
}

.profile-text h2 i {
    color: #2563EB;
    margin-right: 10px;
}

.profile-text p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.margin-top {
    margin-top: 15px;
}

.profile-image {
    background: linear-gradient(135deg, #2563EB10, #1D4ED810);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    text-align: center;
}

.image-placeholder i {
    font-size: 60px;
    color: #2563EB;
    margin: 0 10px;
    opacity: 0.7;
}

/* Visi Misi Section */
.visimisi-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 60px;
}

.visi-card, .misi-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.visi-card:hover, .misi-card:hover {
    transform: translateY(-5px);
}

.visi-icon, .misi-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.visi-icon i, .misi-icon i {
    font-size: 28px;
    color: white;
}

.visi-card h3, .misi-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0F172A;
}

.visi-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.misi-card ul {
    list-style: none;
}

.misi-card ul li {
    padding: 8px 0;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.misi-card ul li i {
    color: #10B981;
}

/* Keahlian Section */
.keahlian-section {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.keahlian-header {
    text-align: center;
    margin-bottom: 30px;
}

.keahlian-header h2 {
    font-size: 1.6rem;
    color: #0F172A;
    margin-bottom: 10px;
}

.keahlian-header h2 i {
    color: #2563EB;
    margin-right: 10px;
}

.keahlian-header p {
    color: #64748B;
}

.skills-container {
    max-width: 600px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0F172A;
}

.progress-bar {
    background: #E2E8F0;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

/* CTA Section */
.tentang-cta {
    text-align: center;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 24px;
    padding: 50px;
    color: white;
}

.tentang-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tentang-cta p {
    color: #CBD5E1;
    margin-bottom: 25px;
}

.btn-tentang-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563EB;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-tentang-cta:hover {
    background: #1D4ED8;
    gap: 15px;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .profile-section {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .visimisi-section {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        display: none;
    }
}

@media (max-width: 768px) {
    .tentang-page {
        padding: 100px 0 50px;
    }
    
    .tentang-header h1 {
        font-size: 2rem;
    }
    
    .profile-section {
        padding: 25px;
    }
    
    .visi-card, .misi-card {
        padding: 25px;
    }
    
    .keahlian-section {
        padding: 30px;
    }
    
    .tentang-cta {
        padding: 30px;
    }
    
    .tentang-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .tentang-header h1 {
        font-size: 1.6rem;
    }
    
    .visi-icon, .misi-icon {
        width: 50px;
        height: 50px;
    }
    
    .visi-icon i, .misi-icon i {
        font-size: 24px;
    }
    
    .visi-card h3, .misi-card h3 {
        font-size: 1.2rem;
    }
}

/* Message Suggestions */
.message-suggestions {
    margin-top: 12px;
    padding: 12px;
    background: #F8FAFC;
    border-radius: 12px;
}

.suggest-title {
    font-size: 0.75rem;
    color: #64748B;
    margin-bottom: 10px;
}

.suggestion-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion {
    background: white;
    border: 1px solid #E2E8F0;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    color: #2563EB;
    cursor: pointer;
    transition: all 0.3s;
}

.suggestion:hover {
    background: #2563EB;
    color: white;
    border-color: #2563EB;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .suggestion-bubbles {
        flex-direction: column;
    }
    .suggestion {
        text-align: center;
    }
}