@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary: #0d6e4f;
    --primary-dark: #0a5a40;
    --primary-light: #14a76c;
    --gold: #c9a227;
    --gold-light: #e6c84a;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #7a7a8a;
    --white: #ffffff;
    --cream: #faf8f5;
    --gray-soft: #f0eeeb;
    --border-light: #e5e3e0;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--cream);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--text-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 520px;
    background: url('kabe.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 46, 0.7) 0%,
        rgba(13, 110, 79, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 48px 24px;
}

.construction-notice {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 2px;
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(201, 162, 39, 0.3);
    position: relative;
}

.construction-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
}

.construction-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.construction-title span {
    color: var(--primary);
}

.construction-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.construction-text:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 100px;
    background: var(--cream);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 2px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

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

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

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--text-dark);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a5a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 79, 0.1);
}

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

.radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-medium);
    padding: 12px 20px;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    transition: all 0.2s;
}

.radio-label:hover {
    border-color: var(--primary);
    background: rgba(13, 110, 79, 0.03);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio-label input[type="radio"]:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.6;
    font-size: 14px;
    color: var(--text-medium);
    padding: 16px 20px;
    background: var(--gray-soft);
    border-radius: 2px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
    transition: background 0.2s, transform 0.15s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

.form-message {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 2px;
    text-align: left;
    display: none;
    font-size: 14px;
    line-height: 1.7;
}

.form-message.success {
    background: #ecf7f1;
    color: #0a5a40;
    border-left: 4px solid var(--primary);
    display: block;
}

.form-message.error {
    background: #fdf2f2;
    color: #9b1c1c;
    border-left: 4px solid #dc2626;
    display: block;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-address {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--gold);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 600;
}

.bank-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bank-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bank-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bank-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.bank-value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.bank-highlight {
    color: var(--gold);
    font-weight: 600;
    font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.bank-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bank-note .bank-value {
    color: var(--gold);
    font-size: 13px;
}

@media (max-width: 768px) {
    .bank-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-right p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

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

.footer-links-bottom span {
    color: rgba(255, 255, 255, 0.2);
}

/* Floating Buttons */
.whatsapp-float-btn,
.phone-float-btn {
    position: fixed;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float-btn {
    left: 24px;
    background: #25d366;
}

.phone-float-btn {
    right: 24px;
    background: var(--primary);
}

.whatsapp-float-btn:hover,
.phone-float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 44px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .construction-notice {
        padding: 32px 24px;
    }
    
    .construction-title {
        font-size: 26px;
    }

    .construction-text {
        font-size: 15px;
    }
    
    .contact-section {
        padding: 60px 0 80px;
    }
    
    .section-title {
        font-size: 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .form-section {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .form-section-title {
        font-size: 12px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .radio-label {
        padding: 14px 16px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px 32px;
    }

    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo-img {
        height: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float-btn,
    .phone-float-btn {
        width: 52px;
        height: 52px;
        bottom: 20px;
    }
    
    .whatsapp-float-btn {
        left: 16px;
    }

    .phone-float-btn {
        right: 16px;
    }
}

/* Remove unused elements */
.whatsapp-float {
    display: none;
}

/* Contact Buttons in Hero */
.contact-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.contact-btn.phone-btn {
    background: var(--primary);
    color: var(--white);
}

.contact-btn.phone-btn:hover {
    background: var(--primary-dark);
}

.contact-btn.email-btn {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.contact-btn.email-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Closed Notice */
.closed-notice {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.closed-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.closed-icon svg {
    width: 64px;
    height: 64px;
}

.closed-notice .section-title {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.closed-notice .section-subtitle {
    margin-bottom: 0;
    line-height: 1.8;
}
