/* ============================================
   MASTEPIECE TEKHNIK - MAIN STYLESHEET
   ============================================
   Warna Utama:
   - Navy Blue: #1e3a5f, #243b53, #102a43
   - Gold: #f59e0b, #fbbf24
   - Putih: #ffffff, #f8fafc
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1e293b;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: #334155;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.navbar.scrolled .nav-links a:hover {
    background: #f1f5f9;
    color: #1e3a5f;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    color: #1e3a5f;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar.scrolled .btn-wa {
    background: #1e3a5f;
    color: #ffffff;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: #1e3a5f;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.95) 0%, rgba(36, 59, 83, 0.85) 50%, rgba(30, 58, 95, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: #fbbf24;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    max-width: 500px;
}

.hero-features {
    list-style: none;
    margin-bottom: 32px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 15px;
}

.hero-features i {
    color: #fbbf24;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #f59e0b;
    color: #102a43;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Wave Separator */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e0e7ff;
    color: #1e3a5f;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
}

.section h2 span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
}

.bg-light {
    background: #f8fafc;
}

/* ============================================
   KEUNGGULAN SECTION
   ============================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.advantage-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a5f, #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.advantage-number {
    font-size: 42px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1;
}

.advantage-card:hover .advantage-number {
    color: #fef3c7;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1e293b;
}

.advantage-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.experience-badge i {
    width: 50px;
    height: 50px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 22px;
}

.experience-badge .number {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

.experience-badge .text {
    font-size: 13px;
    color: #64748b;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content h2 span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.highlight-item {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.highlight-item i {
    font-size: 22px;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.highlight-item .value {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.highlight-item .label {
    font-size: 12px;
    color: #64748b;
}

.areas-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f1f5f9;
    color: #1e3a5f;
    font-size: 13px;
    border-radius: 50px;
}

.area-tag i {
    color: #f59e0b;
    font-size: 12px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a5f, #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1e293b;
}

.service-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.service-features li i {
    color: #f59e0b;
    font-size: 10px;
}

/* ============================================
   HARGA SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.pricing-header {
    background: linear-gradient(135deg, #1e3a5f, #334155);
    padding: 16px 24px;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

.pricing-body {
    padding: 20px 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.price-name {
    font-size: 14px;
    color: #475569;
}

.price-value {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 14px;
    white-space: nowrap;
}

/* Pricing Info */
.pricing-info {
    background: #fef3c7;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #fde68a;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pricing-info-icon {
    width: 50px;
    height: 50px;
    background: #fde68a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 22px;
    flex-shrink: 0;
}

.pricing-info-content {
    flex: 1;
}

.pricing-info h4 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 8px;
}

.pricing-info ul {
    list-style: none;
    font-size: 13px;
    color: #64748b;
}

.pricing-info li {
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
}

.pricing-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(16, 42, 67, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 42, 67, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
}

.lightbox-caption {
    margin-top: 20px;
}

.lightbox-caption h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 8px;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.7);
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 10px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: linear-gradient(135deg, #1e3a5f, #334155);
    border-radius: 16px;
    padding: 40px;
    color: #ffffff;
}

.contact-info-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 28px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-info-item a,
.contact-info-item p {
    color: #ffffff;
    font-size: 15px;
}

.contact-info-item a:hover {
    color: #fbbf24;
}

/* WhatsApp CTA */
.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #22c55e;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.whatsapp-cta i {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
}

.whatsapp-cta-content {
    flex: 1;
}

.whatsapp-cta h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 4px;
}

.whatsapp-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.whatsapp-cta > i:last-child {
    background: none;
    width: auto;
    height: auto;
    font-size: 20px;
}

/* Contact Form */
.contact-form-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #f1f5f9;
}

.contact-form-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #1e293b;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #1e3a5f;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0f172a;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    width: 70px;
    height: 70px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 32px;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-success p {
    color: #64748b;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0f172a;
    color: #ffffff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-contact li i {
    color: #fbbf24;
    font-size: 14px;
}

.footer-contact a:hover {
    color: #fbbf24;
}

.footer h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

.footer-links a i {
    font-size: 12px;
}

.footer-services {
    list-style: none;
}

.footer-services li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-services li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
}

.hours-list {
    list-style: none;
    font-size: 14px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #94a3b8;
}

.hours-list li span:last-child {
    color: #ffffff;
}

.footer-emergency {
    margin-top: 20px;
    padding: 16px;
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
}

.footer-emergency h5 {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-emergency p {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.footer-emergency a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 500;
}

.footer-emergency a:hover {
    color: #f59e0b;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #64748b;
}

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

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .navbar .btn-wa {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .advantages-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 15px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: #334155;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 5px;
}

.mobile-menu a:hover {
    background: #f1f5f9;
    color: #1e3a5f;
}

.mobile-menu .btn-wa {
    display: flex;
    margin-top: 15px;
    background: #1e3a5f;
    color: #ffffff;
    justify-content: center;
}

.floating-cta{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:15px;
  width:90%;
  max-width:900px;
  z-index:9999;
}

/* BUTTON */
.cta{
  flex:1;
  text-align:center;
  padding:14px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  color:#fff;
  font-size:16px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
  transition:0.2s;
}

/* WA */
.cta.wa{
  background:#25D366;
}

/* TELP */
.cta.tel{
  background:#2c7c8c;
}

/* HOVER */
.cta:hover{
  transform:translateY(-2px);
  opacity:0.9;
}

/* MOBILE */
@media(max-width:768px){
  .floating-cta{
    gap:10px;
    bottom:10px;
  }

  .cta{
    font-size:14px;
    padding:12px;
  }
}