:root {
    /* Brand Colors */
    --primary-color: #ff2e1f;
    --primary-hover: #d61e10;
    --secondary-color: #9bc53d;
    
    /* Modern Palette */
    --dark-bg: #0f0505;
    --light-bg: #fdfbfb;
    --card-surface: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    
    /* Spacing & Radius */
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .font-display {
    font-family: 'Be Vietnam Pro', sans-serif;
    letter-spacing: -0.02em;
}

/* --- Floating Sticky Glass Navbar --- */
.navbar-container {
    position: sticky;
    top: 20px; /* Floats 20px from top */
    z-index: 1030;
    padding: 0 15px; /* Safety padding for small screens */
}

.navbar-modern {
    background: rgba(15, 5, 5, 0.85) !important; /* Dark color kept */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-pill); /* Rounded edges */
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* --- Hero Section --- */
.hero-section {
    background-image: 
        linear-gradient(135deg, rgba(15, 5, 5, 0.8) 0%, rgba(255, 46, 31, 0.2) 100%),
        url("https://lh3.googleusercontent.com/aida-public/AB6AXuBGvcZ9yImhx8b86FEDtXRKyQhv1dGTjKRpmUHK4SPORr_gu8quTxiAKrtkYFFDsOzbYMCM-i9t79rYYACmeYvBz8JZXJXBbqgfgQHrg7rT49Qh2nkzDbmNBxUcEQA8JX_vbKtWfTiRVywMqkbEq0nhlLk7Q8qSvLtGzwqL6lAPvkX254IkGqHXxGSRa8CEQeVw-9xdrx67d1bSh5hDtFd4RjGvdeUHLx-XvD0gsOhDWfxDSw5iWfdaeK6wy1IdwdMSm3yoC4lC3Qo");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .hero-title { font-size: 4.5rem; }
}

/* --- Contact Hero (New Clean Style) --- */
.contact-hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("https://lh3.googleusercontent.com/aida-public/AB6AXuBGvcZ9yImhx8b86FEDtXRKyQhv1dGTjKRpmUHK4SPORr_gu8quTxiAKrtkYFFDsOzbYMCM-i9t79rYYACmeYvBz8JZXJXBbqgfgQHrg7rT49Qh2nkzDbmNBxUcEQA8JX_vbKtWfTiRVywMqkbEq0nhlLk7Q8qSvLtGzwqL6lAPvkX254IkGqHXxGSRa8CEQeVw-9xdrx67d1bSh5hDtFd4RjGvdeUHLx-XvD0gsOhDWfxDSw5iWfdaeK6wy1IdwdMSm3yoC4lC3Qo");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-radius: var(--border-radius-lg);
    margin-top: 20px;
    color: white;
    text-align: center;
}

/* --- Modern Cards --- */
.card-modern {
    background: var(--card-surface);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(255, 46, 31, 0.1);
}

/* Image Cards */
.card-image-modern {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background: white;
    height: 100%;
    transition: transform 0.3s ease;
}

.card-image-modern:hover {
    transform: translateY(-5px);
}

.img-zoom-container {
    overflow: hidden;
    height: 280px;
    position: relative;
}

.img-zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-image-modern:hover .img-zoom-container img {
    transform: scale(1.08);
}

/* --- Glass Buttons --- */
.btn-primary-modern {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(236, 19, 19, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-modern:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 19, 19, 0.4);
}

/* New Glass Button Style */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
}

/* --- Feature Icons --- */
.icon-box-modern {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}
.icon-box-modern.bg-red { background: rgba(255, 46, 31, 0.1); color: var(--primary-color); }
.icon-box-modern.bg-green { background: rgba(155, 197, 61, 0.15); color: var(--secondary-color); }

.card-modern:hover .icon-box-modern {
    transform: scale(1.1) rotate(5deg);
}

/* --- Forms --- */
.form-floating > .form-control,
.form-floating > .form-select {
    background-color: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 12px;
}

.form-floating > .form-control:focus {
    background-color: white;
    border-color: rgba(155, 197, 61, 0.5);
    box-shadow: 0 0 0 4px rgba(155, 197, 61, 0.1);
}

/* --- Footer (Fixed: Square Edges) --- */
footer {
    background: var(--dark-bg);
    color: white;
    padding-top: 80px;
    padding-bottom: 40px;
    margin-top: 60px;
    border-radius: 0; /* Ensures square edges */
}

.hover-white:hover { color: white !important; transition: color 0.2s; }

@media (min-width: 992px) {
    /* Force Brand and CTA button containers to share remaining space equally 
       so the center nav remains dead-center */
    .navbar-brand {
        flex: 1;
    }
    .navbar-collapse .d-flex {
        flex: 1;
        justify-content: flex-end !important; /* Push button to far right */
    }
}