/* Font Definitions */
@font-face {
    font-family: 'AbarHigh';
    src: url('fonts/ABARHIGHFANUM-REGULAR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AbarHigh';
    src: url('fonts/AbarHighFaNum-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'AbarHigh';
    src: url('fonts/ABARHIGHFANUM-BOLD.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'AbarHigh';
    src: url('fonts/ABARHIGHNOEN-EXTRABOLD.TTF') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Variables & Reset */
:root {
    --primary-color: #081a29; /* Navy Blue */
    --accent-gold: #c5a059;   /* Luxury Gold hint */
    --bg-color: #f0f2f5;
    --card-bg: #ffffff;
    --text-color: #081a29;
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'AbarHigh', Tahoma, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container Card */
.container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(8, 26, 41, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Header */
.logo-container {
    margin-bottom: 15px;
}

.logo {
    max-width: 120px;
    height: auto;
}

.brand-name {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.brand-subtitle {
    font-family: sans-serif; /* English font */
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background-color: #f5f6f7;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-family: 'AbarHigh', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px; /* Space between icon and text */
}

.btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 26, 41, 0.2);
}

.btn-full {
    width: 100%;
}

.btn-grid {
    display: flex;
    gap: 15px;
}

.btn-grid .btn {
    width: 50%;
}

/* Address Box & Map */
.address-box {
    background: #f9f9f9;
    border: 1px dashed var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.address-box.show {
    opacity: 1;
    max-height: 200px;
    margin-top: -5px; /* Adjust spacing */
}

.address-text {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
}

/* Social Footer */
.social-footer {
    margin-top: 30px;
}

.social-title {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f5f6f7;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.instagram:hover {
    color: #C13584;
    background-color: #fff0f5;
    border-color: #C13584;
}

.social-btn.telegram:hover {
    color: #0088cc;
    background-color: #e6f7ff;
    border-color: #0088cc;
}

.social-btn.whatsapp:hover {
    color: #25D366;
    background-color: #e8fceb;
    border-color: #25D366;
}

/* Hidden Utility */
.hidden {
    display: none; /* Initially handled by max-height/opacity, but useful for fallback */
}
/* Override hidden for animation logic */
.address-box.hidden {
    display: block; /* Need block for animation, rely on opacity/height */
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .btn-grid {
        flex-direction: column;
        gap: 0;
    }
    .btn-grid .btn {
        width: 100%;
    }
}