* { margin:0; padding:0; box-sizing:border-box; }

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Navigation */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #178389;
    flex-shrink: 0;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.home-btn {
    padding: 8px 20px;
    background: #178389;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.home-btn:hover {
    background: #149AAA;
    transform: translateY(-1px);
}

/* Main Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.contact-content::-webkit-scrollbar {
    width: 8px;
}

.contact-content::-webkit-scrollbar-track {
    background: #111;
}

.contact-content::-webkit-scrollbar-thumb {
    background: #178389;
    border-radius: 4px;
}

.contact-content::-webkit-scrollbar-thumb:hover {
    background: #149AAA;
}

/* Left Column - Info */
.contact-info-section {
    padding-top: 10px;
}

.contact-info-section h1 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.trust-indicators {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #178389;
    border-bottom: 1px solid #178389;
}

.trust-item {
    margin-bottom: 20px;
}

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-item-title {
    font-size: 12px;
    font-weight: 600;
    color: #178389;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.trust-item-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.contact-details-list {
    list-style: none;
}

.contact-details-list li {
    margin-bottom: 14px;
    font-size: 14px;
    color: #ccc;
}

.contact-details-list li strong {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    min-width: 80px;
}

.contact-details-list a {
    color: #178389;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details-list a:hover {
    color: #149AAA;
}

/* Right Column - Form */
.form-container {
    background: #111;
    border: none;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 14px;
    color: #ccc;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

/* Form Row for Email and Phone */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #178389;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #000;
    color: #fff;
    transition: all 0.2s ease;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23178389' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.contact-form select option {
    background: #000;
    color: #fff;
    padding: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #149AAA;
    box-shadow: 0 0 0 3px rgba(23,131,137,0.15);
}

.contact-form select:hover {
    border-color: #178389;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Custom Package Group - Hidden by default */
#customPackageGroup {
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: #178389;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #149AAA;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #178389;
    font-size: 11px;
    color: #666;
    text-align: center;
}

/* Success Popup */
#successPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#successPopup .popup-content {
    background: #111;
    border: 1px solid #178389;
    color: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(23, 131, 137, 0.3);
    animation: fadeInScale 0.3s ease;
}

#successPopup .popup-icon {
    width: 60px;
    height: 60px;
    background: #178389;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}

#successPopup h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

#successPopup p {
    font-size: 15px;
    color: #ccc;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 968px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    
    .page-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        overflow-y: visible;
        padding-right: 0;
    }
    
    .header-nav {
        margin-bottom: 25px;
    }
    
    .form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 640px) {
    .page-wrapper {
        padding: 15px 12px;
    }
    
    .header-nav {
        padding: 12px 0;
        margin-bottom: 20px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .home-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-info-section h1 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 15px;
    }
    
    .trust-indicators {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .trust-item {
        margin-bottom: 15px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    
    .form-header p {
        font-size: 13px;
    }
    
    /* Stack form row on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    #successPopup .popup-content {
        padding: 30px 25px;
        margin: 0 20px;
    }
    
    #successPopup .popup-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    #successPopup h3 {
        font-size: 20px;
    }
    
    #successPopup p {
        font-size: 14px;
    }
}