/* Custom Properties & Design Tokens */
:root {
    --bg-dark: #0f0f11;
    --bg-card: rgba(22, 22, 26, 0.7);
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --accent-gold: #f5b722;
    --accent-gold-glow: rgba(245, 183, 34, 0.4);
    --accent-gold-hover: #ffd05b;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #20ba5a;
    --whatsapp-glow: rgba(37, 211, 102, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Layout */
.container {
    display: flex;
    width: 100vw;
    min-height: 100vh;
}

/* Left Side - Content */
.content-side {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(circle at 10% 20%, rgba(20, 20, 25, 1) 0%, rgba(10, 10, 12, 1) 90%);
    position: relative;
    overflow-y: auto;
}

/* Logo styling */
.logo-container {
    margin-bottom: 3rem;
}

.main-logo {
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
    mix-blend-mode: screen;
}

.main-logo:hover {
    transform: scale(1.03);
}

/* Info Section */
.info-section {
    max-width: 620px;
    margin: auto 0;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(245, 183, 34, 0.1);
    border: 1px solid rgba(245, 183, 34, 0.25);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 183, 34, 0.1);
    }
    100% {
        box-shadow: 0 0 12px 2px rgba(245, 183, 34, 0.25);
    }
}

.title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-gold);
    background: linear-gradient(120deg, var(--accent-gold) 0%, #ffe494 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 540px;
}

/* Branch Cards */
.branches-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.branch-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: var(--transition-smooth);
}

.branch-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 183, 34, 0.3);
    background: rgba(28, 28, 34, 0.85);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 183, 34, 0.1);
}

.branch-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.branch-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.branch-card:hover .branch-icon-wrapper {
    background: rgba(245, 183, 34, 0.15);
    transform: scale(1.05);
}

.branch-details h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.branch-details .address {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-details .address i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px var(--whatsapp-glow);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Right Side - Image */
.image-side {
    flex: 1.4;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    background-color: #0c0c0e;
}

.bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    object-fit: contain;
    border-radius: 12px;
    z-index: 1;
    transition: transform 12s ease;
}

.image-side:hover .bg-image {
    transform: translate(-50%, -50%) scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 17, 0) 60%, rgba(15, 15, 17, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.image-caption {
    position: relative;
    z-index: 3;
    max-width: 400px;
}

.caption-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-side {
        padding: 4rem;
    }
    .title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column-reverse;
        overflow-y: auto;
    }
    
    .content-side {
        flex: none;
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .main-logo {
        height: 110px;
    }
    
    .image-side {
        height: 45vh;
        min-height: 350px;
        flex: none;
        padding: 2rem;
    }
    
    .image-overlay {
        background: linear-gradient(to bottom, rgba(15, 15, 17, 0.1) 0%, rgba(15, 15, 17, 0.9) 100%);
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .info-section {
        margin: 2rem 0;
    }
}

@media (max-width: 600px) {
    .branch-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    
    .btn-whatsapp {
        justify-content: center;
        width: 100%;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }
}
