/* style.css */
:root {
    /* Color Palette */
    --primary-navy: #111111;
    --primary-dark: #000000;
    --accent-gold: #D4AF37;
    --accent-gold-light: #f3d46a;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gold {
    color: var(--accent-gold);
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-navy);
}

.text-white {
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 40px;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1509695507497-903c140c43b0?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    margin-top: 4rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.8);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-branches {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.branch-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    width: 250px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.branch-card:hover::before {
    transform: translateX(100%);
}

.branch-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.branch-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.branch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.branch-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* Branch Sections */
.branch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.branch-grid.reverse .branch-info {
    order: 1;
}

.branch-grid.reverse .branch-media {
    order: 2;
}

.branch-image-wrapper {
    position: relative;
    border-radius: 20px;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    z-index: 0;
    transition: var(--transition-smooth);
}

.branch-grid.reverse .image-accent {
    left: 20px;
    top: 20px;
}

.branch-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.branch-image-wrapper:hover .branch-image {
    transform: translate(-10px, -10px);
}

.branch-grid.reverse .branch-image-wrapper:hover .branch-image {
    transform: translate(10px, 10px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.bg-dark .section-desc {
    color: rgba(255,255,255,0.7);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-list i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.info-list span {
    color: var(--text-muted);
}

.bg-dark .info-list span {
    color: rgba(255,255,255,0.7);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.btn-gold:hover {
    background-color: var(--white);
    color: var(--primary-navy);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Services */
.services-banner {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Brands */
.brands-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    cursor: default;
}

.brand-item:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 8px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.footer-links h3, .footer-legal h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a, .footer-legal a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-legal li {
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    background-color: #030810;
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animations & Utilities */
.text-center { text-align: center; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .branch-grid, .services-grid, .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .branch-grid.reverse .branch-info {
        order: 2;
    }
    
    .branch-grid.reverse .branch-media {
        order: 1;
    }
    
    .info-list span {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Galleries */
.gallery-container {
    margin-top: 5rem;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--primary-dark);
}

.gallery-title.text-white {
    color: var(--white);
}

.gallery-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1rem auto 0;
}

.branch-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.bg-dark .gallery-img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.bg-dark .gallery-img:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .nav-list {
        display: none; /* Can implement mobile menu in JS */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-branches {
        flex-direction: column;
        align-items: stretch;
    }
    
    .branch-card {
        width: 100%;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
}
