:root {
    /* Color Palette (Matching TOX INTL Clean Style) */
    --primary-blue: #0A66FF; 
    --background-light: #FFFFFF; 
    --background-dark: #121828; 
    --text-dark: #121828; 
    --text-light: #525966; 
    --border-color: #E0E0E0; 
    --form-bg: #F8F9FA; 
    
    /* Design Elements */
    --box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08); 
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth; 
}

/* --- Utility Classes & Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navbar --- */
header {
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header-logo {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain; 
}

.contact-btn {
    background-color: var(--primary-blue);
    color: var(--background-light);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    border-radius: 25px; 
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    background-color: #0050e6;
    box-shadow: 0 2px 8px rgba(10, 102, 255, 0.4);
}

/* --- Main Content (Hero & Text) --- */
.coming-soon-content {
    text-align: center;
    padding: 100px 20px;
}

.hero-section {
    margin-bottom: 80px;
}

.hero-section h1 {
    font-size: 5rem; 
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.hero-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.small-text {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-blue);
    padding: 5px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
}

.description strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* --- Countdown Timer --- */
.countdown-section {
    padding: 40px 0;
    margin-bottom: 80px;
}

.countdown-section h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-light);
    padding: 30px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-light);
    min-width: 140px;
    transition: transform 0.2s ease;
}

.time-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.time-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.time-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CONTACT US SECTION STYLES (Stacked Labels) --- */
.contact-us-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

/* --- Left Panel (Info) --- */
.contact-info-panel {
    padding: 20px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* CONTACT CARD – EXACT LEFT ALIGN WITH FORM INPUTS */

.info-item {
    display: flex;
    align-items: flex-start;             /* instead of center */
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-align: left;
    position: relative;
}

/* ICON — stays left */
.icon-blue {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* IMPORTANT: shift info-details to EXACT same alignment as form inputs */
.info-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    /* This is the KEY alignment value */
    margin-left: calc(150px - 40px); 
    /* 
       Why? Your form uses:
       label width = 150px
       gap = ~15px
       icon width = 20–24px
       After deducting icon + padding, this aligns perfectly.
    */
}

/* Label & Value */
.info-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Right Panel (Form) --- */
.contact-form-panel {
    background-color: var(--form-bg);
    padding: 40px;
    border-radius: 8px;
}

.form-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: none; 
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 0; 
    font-size: 1rem;
    font-weight: 600;
    cursor: default; 
    color: var(--text-dark); 
    border-bottom: 2px solid var(--primary-blue); 
    transition: all 0.2s;
}

.full-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

/* **** STACKED/VERTICAL LAYOUT STYLING **** */
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stacked: label above input */
    align-items: flex-start; /* Aligns contents to the left */
    gap: 5px; 
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    width: auto; 
    text-align: left; 
    margin-bottom: 0; 
    margin-left: 0;
}

.form-group input, .form-group textarea {
    flex-grow: 1; 
    width: 100%; 
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-dark);
    text-align: left; /* <-- FIX: Aligns text inside the input field to the left */
}

/* Mobile number input adjustments */
.mobile-inputs {
    display: flex;
    flex-grow: 1; 
    width: 100%;
}

.country-code {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.mobile-inputs input {
    border-radius: 0 4px 4px 0;
    flex-grow: 1;
}

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

/* Button Styling */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.send-enquiry-btn {
    background-color: var(--primary-blue);
    color: var(--background-light);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px; 
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.send-enquiry-btn:hover {
    background-color: #0050e6;
}
/* **** END STACKED LAYOUT STYLING **** */


/* --- Footer Styling (Restored Multi-Column) --- */
.tox-footer {
    background-color: var(--background-dark);
    color: #B0B5BF;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-info { flex: 1; min-width: 200px; }
.footer-links-group, .footer-contact-details { flex: 1; min-width: 150px; }

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue); 
    margin-bottom: 10px;
}

.footer-logo-info p { font-size: 0.95rem; color: #7A818F; }

.link-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--background-light); 
    margin-bottom: 15px;
}

.footer-links-group ul { list-style: none; padding: 0; }
.footer-links-group ul li { margin-bottom: 8px; }

.footer-links-group a, .footer-contact-details p {
    text-decoration: none;
    color: #B0B5BF;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.contact-info-item { display: block; margin-bottom: 5px; }

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.copyright p { font-size: 0.8rem; color: #7A818F; }


/* --- SUBMISSION POPUP STYLES --- */
.submission-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.submission-popup-overlay.hidden {
    display: none;
    opacity: 0;
}

.submission-popup-content {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    max-width: 450px;
    text-align: center;
    transition: transform 0.3s ease;
}

#popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

#popup-message {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.close-popup-btn {
    background-color: var(--primary-blue);
    color: var(--background-light);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* Status Colors */
.submission-popup-overlay.success #popup-title { color: #28a745; }
.submission-popup-overlay.warning #popup-title { color: orange; }
.submission-popup-overlay.error #popup-title { color: #dc3545; }


/* --- Media Queries for Responsiveness --- */
@media (max-width: 992px) {
    .hero-section h1 { font-size: 3.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 30px; }
}

@media (max-width: 600px) {
    .hero-section h1 { font-size: 2.5rem; }
    .countdown-timer { flex-wrap: wrap; gap: 15px; }
    .time-box { padding: 20px 15px; min-width: 100px; }
    .time-value { font-size: 2.5rem; }
    .form-row { flex-direction: column; gap: 15px; }
}