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

body {
    background-color: #cf9c51;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1100px;
    padding: 40px 30px;
}

/* ===== LEFT SECTION ===== */
.left-section {
    flex: 1;
}
.logo {
    display: block;
    margin-bottom: 2rem;
}
.logo img {
    max-width: 280px;
    height: auto;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-item .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== RIGHT SECTION ===== */
.right-section {
    flex: 1;
    max-width: 480px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    margin-bottom: 24px;
}

.services-section h1 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.services-intro {
    font-size: 0.95rem;
    margin-bottom: 16px;
    opacity: 0.95;
    line-height: 1.5;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-list li {
    background-color: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 14px 18px;
}

.services-list li strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.services-list li span {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* ===== CONTACT SECTION (Full-width bottom) ===== */
.contact-section {
    width: 100%;
    max-width: 1100px;
    padding: 0 30px 40px;
}

.form-section {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 36px;
}

.form-section h2 {
    font-family: 'roboto', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
    text-transform: uppercase;
}

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

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    outline: none;
    transition: background-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #48301b;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

button[type="submit"]:hover {
    background-color: #fff;
    color: #48301b;
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 36px;
        padding: 40px 20px;
        text-align: center;
    }

    .left-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info {
        align-items: center;
    }

    .info-item {
        justify-content: center;
    }

    .right-section {
        width: 100%;
        max-width: 100%;
    }

    .contact-section {
        padding: 0 20px 40px;
    }

    .form-section {
        padding: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .logo img {
        max-width: 220px;
    }

    .tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 180px;
    }

    .tagline {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .form-section {
        padding: 20px;
    }
}


/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: radial-gradient(ellipse at center, #cf9c51 0%, #c08b3d 100%);
    overflow: hidden;
}

/* Ambient glow rings */
#loading-screen::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207,156,81,0.12) 0%, transparent 70%);
    animation: ambientPulse 3s ease-in-out infinite;
}

@keyframes ambientPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%        { transform: scale(1.15); opacity: 1; }
}

/* Logo wrapper */
#logo-wrapper {
    position: relative;
    width: min(420px, 82vw);
}

/* SVG color overrides for dark background */
/* 
#logo-svg .st0 { fill: #F5C891; }
#logo-svg .st1 { fill: #FFFFFF; }
 */
/* Icon starts hidden */
#group-icon { opacity: 0; }

/* A warm underline accent under slogan */
#slogan-line {
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #F5C891 30%, #F5C891 70%, transparent);
    margin: 6px auto 0;
    border-radius: 2px;
}

/* Loading dots */
#loading-dots {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    opacity: 0;
}

.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #F5C891;
}

/* Fade-out class applied via JS */
.screen-fadeout {
    transition: opacity 0.9s cubic-bezier(0.4, 0, 1, 1);
    opacity: 0 !important;
    pointer-events: none;
}