:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f3460;
            --gold: #e6b325;
            --light: #f5f5f5;
            --gray: #eaeaea;
            --silver: #c0c0c0;
            --light-blue: #4a8de0;
}

body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: var(--light);
            padding-top: 70px; /* Added for fixed nav */
        }

h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

.navbar {
            background: #000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
        }

.navbar.scrolled {
            padding: 10px 0;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(10px);
        }

.navbar-dark .navbar-toggler {
            border-color: var(--gold);
        }

.navbar-dark .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(230,179,37,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

.logo-image-container {
            width: 160px;
            height: 120px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: none;
            border: none;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
        }

.logo-image-container::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border: none;
            border-radius: 10px;
            z-index: 1;
            pointer-events: none;
        }

.logo-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.logo-image-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 2px;
        }

.logo-tagline {
            font-size: 0.85rem;
            color: #fff;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

.nav-link {
            color: #000 !important;
            background: var(--gold);
            font-weight: 600;
            padding: 8px 16px !important;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }

.nav-link:hover, .nav-link.active {
            color: #000 !important;
            background: #d19c1f;
        }

.navbar .navbar-nav {
            gap: 12px;
        }

.navbar-collapse .navbar-nav {
            gap: 12px;
            padding-top: 12px;
        }

.navbar .btn-primary-custom {
            background-color: var(--gold);
            color: #000;
        }

.navbar .btn-primary-custom:hover {
            background-color: #d19c1f;
            color: #000;
        }

.btn-primary-custom {
            background-color: var(--gold);
            border: none;
            color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.btn-primary-custom:hover {
            background-color: #d19c1f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

.btn-secondary-custom {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.btn-secondary-custom:hover {
            background-color: var(--gold);
            color: var(--primary);
            transform: translateY(-3px);
        }

.whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

.whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
        }

.email-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 110px;
            right: 40px;
            background-color: #000;
            color: var(--gold);
            border-radius: 50px;
            text-align: center;
            font-size: 28px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

.email-float:hover {
            background-color: #111;
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
        }

@media (max-width: 992px) {
            .whatsapp-float, .email-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: calc(16px + env(safe-area-inset-bottom));
                right: calc(16px + env(safe-area-inset-right));
            }

            .email-float {
                bottom: calc(78px + env(safe-area-inset-bottom));
            }
        }

@media (max-width: 576px) {
            .whatsapp-float, .email-float {
                bottom: calc(90px + env(safe-area-inset-bottom));
                right: calc(16px + env(safe-area-inset-right));
            }

            .email-float {
                bottom: calc(150px + env(safe-area-inset-bottom));
            }
        }
