:root {
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8529;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #e0e0e0;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.bg-light {
    background-color: var(--light-bg);
}

.subtitle {
    display: inline-block;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.light-text h2 {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--dark-bg);
    border-color: var(--gold-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--white);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--dark-bg);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 1.5rem 0;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.css-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-primary);
    text-align: center;
    line-height: 1;
}

.logo-icon i {
    font-size: 2rem;
    margin-bottom: -5px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
    transition: var(--transition-fast);
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-weight: 700;
}

.logo-top {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo-bottom {
    font-size: 0.8rem;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.logo-bottom i {
    font-size: 0.6rem;
}

.header.scrolled .logo-icon i {
    font-size: 1.5rem;
}

.header.scrolled .logo-top {
    font-size: 1.4rem;
}

.header.scrolled .logo-bottom {
    font-size: 0.6rem;
}

.footer-css-logo {
    align-items: flex-start;
    text-align: left;
}

.footer-css-logo .logo-icon i {
    margin-bottom: -2px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-fast);
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--gold-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Slider Section */
.slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: var(--white);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    border-color: var(--gold-primary);
}

.prev-arrow { left: 2rem; }
.next-arrow { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-content h1 span {
    color: var(--gold-primary);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold-primary);
    transition: var(--transition-fast);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.value-item:hover {
    background: var(--dark-bg);
    color: var(--white);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.value-item:hover i {
    transform: scale(1.1);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.value-item:hover p {
    color: var(--text-light);
}

/* Practice Areas */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 80px;
}

.service-list {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.service-list li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-list li::before {
    content: '•';
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    top: 0;
}

/* Industries */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag {
    background: var(--white);
    color: var(--dark-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: var(--transition-fast);
    cursor: default;
}

.tag:hover {
    background: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-primary);
    transition: var(--transition-fast);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.feature-box p {
    color: var(--text-secondary);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: var(--gold-primary);
    opacity: 0.3;
}

.process-step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px var(--white), 0 0 0 6px var(--gold-primary);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
}

/* FAQ */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover, .faq-question.active {
    color: var(--gold-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-header {
    text-align: left;
}

.contact-info .section-header h2 {
    margin-bottom: 1.5rem;
}

.commitment-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    background: var(--light-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.contact-item p, .contact-item a {
    color: var(--text-secondary);
}

.contact-item a:hover {
    color: var(--gold-primary);
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
}

.footer h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.legal-links a {
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.legal-links a:hover {
    color: var(--white);
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links a {
        margin: 0 0.5rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}
.stat-number, .stat-suffix {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}
.stat-item p {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Case Studies */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.case-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2.5rem;
    border-top: 4px solid var(--gold-primary);
    transition: transform 0.3s;
}
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.case-category {
    font-size: 0.9rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}
.case-card h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}
.case-details {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}
.case-details strong {
    color: var(--dark-bg);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border-bottom: 4px solid var(--gold-primary);
}
.quote-icon {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.testimonial-author strong {
    display: block;
    color: var(--dark-bg);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Logo Image Styling */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 120px; /* Keep logo large */
    width: auto;
    display: block;
    margin: -30px 0; /* This negative margin crops the header height without shrinking the logo */
}
.footer-logo .logo-img {
    height: 160px; /* Increased size significantly for footer */
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1001;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
}
.dropdown-content a {
    color: var(--dark-bg) !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-transform: none;
}
.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary) !important;
    padding-left: 25px !important;
}
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Video Hero Styles */
.video-hero {
    position: relative;
    height: 100vh;
    padding-top: 140px;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}
.video-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.6);
    z-index: -1;
}
.video-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
}
.video-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideUp 1s ease-out;
    text-transform: uppercase;
}
.video-hero h1 span {
    color: var(--gold-primary);
}
.video-hero p {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--light-bg);
    animation: slideUp 1.2s ease-out;
}
.video-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: slideUp 1.4s ease-out;
}
@media (max-width: 768px) {
    .video-hero h1 { font-size: 2.5rem; }
    .video-hero .hero-buttons { flex-direction: column; }
}

/* Breadcrumb Banner */
.breadcrumb-banner {
    height: 40vh;
    padding-top: 120px;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: 0;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(10,10,10,0.6) 30%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
}
.breadcrumb-banner h1 {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}
.breadcrumbs {
    font-size: 1rem;
    color: var(--light-bg);
}
.breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}
.breadcrumbs a:hover {
    color: var(--gold-primary);
}
.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
    color: var(--gold-primary);
}

/* Premium Contact Page Styles */
.bg-light {
    background-color: #f8f9fa;
}
.premium-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.info-item-premium .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.info-item-premium:hover .icon-box {
    transform: translateY(-3px);
    background-color: var(--gold-primary);
    color: var(--white);
}
.info-item-premium h4 {
    margin: 0 0 0.2rem 0;
    color: var(--dark-bg);
    font-size: 1.1rem;
}
.info-item-premium p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}
.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.premium-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.form-group-premium {
    position: relative;
    margin-bottom: 2rem;
}
.form-group-premium input,
.form-group-premium textarea,
.form-group-premium select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background-color: transparent;
    transition: all 0.3s ease;
}
.form-group-premium input:focus,
.form-group-premium textarea:focus,
.form-group-premium select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.form-group-premium label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #999;
    background-color: var(--white);
    padding: 0 0.3rem;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}
/* Floating Label Magic */
.form-group-premium input:focus ~ label,
.form-group-premium input:not(:placeholder-shown) ~ label,
.form-group-premium textarea:focus ~ label,
.form-group-premium textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 500;
}
.select-wrapper::after {
    content: '\\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}
.form-group-premium select {
    appearance: none;
    -webkit-appearance: none;
    color: #333;
}
.form-group-premium select:invalid {
    color: #999;
}
.btn-premium {
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Global Override for Inline Page Hero Styles to Prevent Header Overlap */
.page-hero {
    align-items: flex-end !important;
    padding-bottom: 50px !important;
    padding-top: 120px !important;
}
/* Blog Article Expansion Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.article-hero-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-bg);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.blog-article h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    font-size: 1.8rem;
}
.blog-article p {
    margin-bottom: 1.5rem;
}
.blog-article ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}
.blog-article li {
    margin-bottom: 0.8rem;
}
.article-quote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.05);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--dark-bg);
    border-radius: 0 8px 8px 0;
}
.share-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}
.share-section h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background-color: #f8f9fa;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}
.share-btn:hover {
    background-color: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}
.article-footer-actions {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}
/* Editorial Blog Layout Styles */
.editorial-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    padding-top: 120px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-bottom: 4rem;
}
.editorial-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.8) 100%);
}
.editorial-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.editorial-meta {
    font-size: 1.1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}
.editorial-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}
.main-content {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.main-content > p:first-of-type::first-letter {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}
.blog-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.sidebar-widget h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.8rem;
    display: inline-block;
}
.author-box {
    text-align: center;
}
.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}
.author-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}
.author-title {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.author-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent-posts-list li {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}
.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.recent-posts-list a {
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    transition: color 0.3s;
}
.recent-posts-list a:hover {
    color: var(--gold-primary);
}
.newsletter-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-family: inherit;
}
.newsletter-form button {
    width: 100%;
}

@media (max-width: 992px) {
    .editorial-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
}