/* Global Styles */
body {
    font-family: 'Lato', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Page Specific Body Backgrounds */
body.bg-oxford {
    background-color: #0A192F;
    color: #F4F4F9;
}

body.bg-offwhite {
    background-color: #F4F4F9;
    color: #0A192F;
}

/* --- THE EASTER EGG --- */
::selection {
    background: #FF6B00; /* Corgi Vibrant Orange */
    color: #ffffff;
}
::-moz-selection {
    background: #FF6B00;
    color: #ffffff;
}

.corgi-secret-btn {
    background-color: transparent;
    color: #C5A059;
    border: 1px solid #C5A059;
    transition: all 0.4s ease;
    cursor: pointer;
}
.corgi-secret-btn:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.25);
    transform: translateY(-2px);
}
.corgi-secret-btn-solid {
    background-color: #C5A059;
    color: #0A192F;
    border: 1px solid #C5A059;
    transition: all 0.4s ease;
    cursor: pointer;
}
.corgi-secret-btn-solid:hover {
    background-color: #FF6B00;
    border-color: #FF6B00;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

/* Layout & Components */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.95));
}

.gold-border-hover {
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.4s ease;
}
.gold-border-hover:hover {
    border-color: #C5A059;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

/* Animations */
.page-fade-in {
    animation: pageFadeIn 0.7s ease-out forwards;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-pop-in {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-pop-in.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Inputs VIP Styling */
.vip-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(141, 163, 153, 0.4);
    border-radius: 0;
    color: white;
    padding: 12px 0;
    transition: all 0.3s ease;
}
.vip-input:focus {
    outline: none;
    border-bottom-color: #C5A059;
    box-shadow: 0 1px 0 0 #C5A059;
}
.vip-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Dropdown custom styling */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Editorial Formatting */
.editorial-content h2 {
    font-family: 'Playfair Display', serif;
    color: #0A192F;
    font-size: 2.25rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.editorial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-weight: 300;
}
.editorial-content strong {
    color: #0A192F;
    font-weight: 600;
}
.editorial-content ul {
    margin-bottom: 2rem;
}
.editorial-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a5568;
    font-weight: 300;
    position: relative;
    padding-left: 2rem;
}
.editorial-content li::before {
    content: "\f058"; /* FontAwesome Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #C5A059;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Service Cards */
.service-card {
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #C5A059;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #C5A059;
}

/* Briefing Card Styling */
.briefing-card {
    transition: all 0.4s ease;
}
.briefing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #C5A059;
    transform: translateY(-3px);
}
