/* ==========================================================================
   1. UNIVERSAL & CORE THEME SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #020617; /* Slate-950 */
    --bg-card: rgba(15, 23, 42, 0.75); /* Dark Glass Backdrop */
    --gold-main: #d4af37;
    --gold-light: #fff5c0;
    --gold-dark: #aa7c11;
    --border-gold: rgba(212, 175, 55, 0.25);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Cinzel', serif;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    font-family: var(--font-sans);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Text Selection */
::selection {
    background-color: var(--gold-main);
    color: #020617;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-main);
}

.main-container {
    width: 100%;
    min-height: 100vh;
    padding: 10px;
    background: transparent;
}

/* ==========================================================================
   2. GRADIENTS & REUSABLE UTILITIES
   ========================================================================== */

/* Gold Gradient Text Class */
.gold-gradient-text, span {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
    background-clip: text; /* Standard property for compatibility */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Card Style */
.glass-card, .two-one, .four-one, .six-two, .eight-two, .footer {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
}

/* Ambient Glow Effect */
.glow-effect {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   3. NAVIGATION BAR
   ========================================================================== */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
}

.baar-logo {
    width: 200px;
}

.baar-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.baar-links ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.baar-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.baar-links a:hover {
    color: var(--gold-main);
}

/* ==========================================================================
   4. BUTTONS & CTA STYLES
   ========================================================================== */
.btn, .book-now-btn, .btn-all, .eight-two button, .five button, .seven-two button {
    display: inline-block;
    background: linear-gradient(90deg, #f59e0b 0%, #facc15 100%);
    color: #020617 !important;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn:hover, .book-now-btn:hover, .btn-all:hover, .eight-two button:hover, .five button:hover, .seven-two button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

.btn span {
    -webkit-text-fill-color: #020617 !important;
}

/* ==========================================================================
   5. HERO & SECTIONS LAYOUT
   ========================================================================== */

/* Section One - Hero */
.one {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
}

.hero-section {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 20px;
}

.one h1 {
    font-size: 42px;
    font-family: var(--font-serif);
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 20px;
}

.one p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.one-one .imgone {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

/* Section Two - Highlight Box */
.two {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.two-one {
    max-width: 900px;
    padding: 40px 50px;
    border-radius: 24px;
    text-align: center;
}

.two-one-h2 {
    font-size: 28px;
    font-family: var(--font-serif);
    color: var(--text-light);
    margin-bottom: 20px;
}

.two-one-p, .two-one-pp {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==========================================================================
   6. SERVICES GRID
   ========================================================================== */
.four {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
}

.four h2 { 
    font-size: 36px; 
    font-family: var(--font-serif);
    margin-bottom: 10px; 
    color: var(--text-light); 
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    flex-wrap: wrap;
}

.four-one {
    width: 23%;
    min-width: 250px;
    padding: 30px 20px;
    border-radius: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.four-one:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
}

.four-one ion-icon, .four-one i {
    font-size: 36px;
    color: var(--gold-main);
    margin-bottom: 15px;
}

.four-one a { 
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-main);
}

/* ==========================================================================
   7. PROJECTS & WORK PROCESS
   ========================================================================== */
.five-two img, .five-three img {
    width: 32%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    transition: transform 0.3s ease;
}

.five-two img:hover, .five-three img:hover {
    transform: scale(1.03);
}

.six-two img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-main);
    padding: 4px;
    margin-bottom: 15px;
}

/* ==========================================================================
   8. FORM & CONTACT SECTION
   ========================================================================== */
.eight-two {
    width: 48%;
    padding: 40px;
    border-radius: 24px;
}

.eight-two input {
    width: 100%;
    padding: 14px 15px;
    margin: 10px 0;
    border-radius: 10px;
    background: #020617;
    border: 1px solid #334155;
    color: var(--text-light);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.eight-two input:focus {
    border-color: var(--gold-main) !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   9. TICKER BAR
   ========================================================================== */
.nine {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 15px 0;
    margin: 30px 0;
}

.nine-one {
    display: inline-block;
    white-space: nowrap;
    font-size: 24px;
    font-weight: bold;
    animation: ticker 20s linear infinite;
}

@keyframes ticker {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   10. FOOTER & RESPONSIVE DESIGN
   ========================================================================== */
.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    border-radius: 20px 20px 0 0;
    margin-top: 60px;
}

.quick-links a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    padding: 6px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.quick-links a:hover { 
    color: var(--gold-main); 
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .baar-links ul {
        flex-direction: column;
        gap: 12px;
    }

    .one, .two, .three-one, .three-two, .five-two, .five-three, .process-grid, .seven, .eight, .footer {
        flex-direction: column !important;
        align-items: center;
        gap: 30px;
    }

    .hero-section {
        text-align: center;
        padding-right: 0;
    }

    .two-one, .three-one-one, .three-two-one, .seven-one, .seven-two, .eight-one, .eight-two, .footer-one {
        width: 100% !important;
        text-align: center;
    }

    .four-one, .six-two {
        width: 100% !important;
    }

    .five-two img, .five-three img {
        width: 100% !important;
        height: auto;
    }
}