:root {
    --primary-color: #E86B30; /* Vibrant Saffron */
    --primary-dark: #C45520;
    --primary-light: #FF8C5A;
    --accent-color: #D4AF37; /* Royal Gold */
    --secondary-color: #800000; /* Deep Maroon */
    --bg-cream: #FFFDF5; /* Warm Cream */
    --text-dark: #2D2D2D;
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-cream);
    background-image: url('images/premium_bg.png');
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-premium);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 42px;
}

/* Footer Logo Styling */
.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }
    .footer-logo {
        height: 35px;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    position: relative;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(232, 107, 48, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-custom:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(232, 107, 48, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s ease;
    animation: floating 6s ease-in-out infinite;
}

.hero-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

/* Feature Cards */
.features-section {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: white;
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-cream), white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

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

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #1a1a1a, #000);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.filter-white {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; }
    .hero-section { padding: 120px 0 60px; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
}
