:root {
    /* Brand Colors */
    --primary-orange: #FF8C00;
    --primary-orange-rgb: 255, 140, 0;
    --primary-orange-glow: rgba(255, 140, 0, 0.4);
    --charcoal-grey: #2C2C2C;
    --dark-grey: #1A1A1A;
    --soft-white: #F8F9FA;
    --light-grey: #E9ECEF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --card-border-radius: 20px;
    
    /* Shadows */
    --soft-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-grey);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-primary-orange { color: var(--primary-orange); }
.text-primary-orange:hover { color: var(--charcoal-grey); }

.btn-royal {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px var(--primary-orange-glow);
}

.btn-royal:hover {
    background: #e67e00;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-orange-glow);
    color: #fff;
}

.glow-on-hover {
    position: relative;
    overflow: hidden;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    pointer-events: none;
}

.glow-on-hover:hover::after {
    transform: scale(1);
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--card-border-radius);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e67e00;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
