/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --color-navy: #082147;
    --color-gold: #C19A6B;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray: #6B7280;
    --color-gray-dark: #374151;
    --color-black: #000000;
    --color-beige: #F4EDE4;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(8, 33, 71, 0.08);
    --shadow-md: 0 4px 16px rgba(8, 33, 71, 0.12);
    --shadow-lg: 0 8px 32px rgba(8, 33, 71, 0.16);
    --shadow-xl: 0 16px 48px rgba(8, 33, 71, 0.2);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    line-height: 1.6;
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Header
   =================================== */
.header-top {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: var(--color-gold);
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-email {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-email:hover {
    color: var(--color-gold);
}

.navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}



.logo img {
    height: 160px;
    /* Increased from 140px */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 15px;
    /* Adjust vertical centering */
}

.nav-menu a {
    color: var(--color-navy);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-navy);
    transition: var(--transition);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background: #A67C52;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-navy {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-navy:hover {
    background: #0A2A5C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline,
.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover,
.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===================================
   Hero Section - Modern Design
   =================================== */
.hero-modern {
    background: linear-gradient(135deg, var(--color-navy) 0%, #0A2A5C 100%);
    color: var(--color-white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/public/images/office-bg.jpg') no-repeat right center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.subtitle-gold {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-lawyer-photo {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Reservation Section
   =================================== */
.reservation-section {
    padding: 3rem 0;
    background: var(--color-beige);
}

.reservation-card {
    background: var(--color-gold);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: var(--color-white);
}

.reservation-card h2 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.reservation-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.rdv-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.rdv-type-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: var(--transition);
    color: var(--color-navy);
}

.rdv-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.rdv-icon {
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
}

.rdv-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-navy);
}

.rdv-type-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   About Preview Section
   =================================== */
.about-preview-section {
    padding: 3.5rem 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-photo-col img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.signature-box {
    text-align: center;
}

.about-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-text-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.stats-inline {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* ===================================
   Competences Grid
   =================================== */
.competences-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.competence-card-white {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.competence-card-white:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.competence-icon-gold {
    width: 70px;
    height: 70px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--color-white);
}

.competence-card-white h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.competence-card-white p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Testimonial Section
   =================================== */
.testimonial-section {
    background: var(--color-navy);
    padding: 3rem 0;
    color: var(--color-white);
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-gold);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial-author {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.quote-icon-end {
    font-size: 4rem;
    color: var(--color-gold);
    font-family: Georgia, serif;
    line-height: 1;
    text-align: right;
}

/* ===================================
   Blog Section
   =================================== */
.blog-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--color-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-link:hover {
    color: var(--color-navy);
}

/* ===================================
   TV Appearances Section - Premium Design
   =================================== */
.tv-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.tv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.tv-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.08), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.tv-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tv-video-card {
    background: var(--color-white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(8, 33, 71, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(193, 154, 107, 0.1);
    position: relative;
}

.tv-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #d4af37, var(--color-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tv-video-card:hover::before {
    transform: scaleX(1);
}

.tv-video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(8, 33, 71, 0.15);
    border-color: var(--color-gold);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-navy), #0A2A5C);
}

.video-wrapper::before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tv-video-card:hover .video-wrapper::before {
    opacity: 0.15;
    font-size: 5rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--color-white), #fafbfc);
    position: relative;
}

.video-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.video-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-navy);
    font-weight: 600;
    margin-top: 0.5rem;
}

.video-info p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.tv-video-card:hover .video-info h3 {
    color: var(--color-gold);
    transition: color 0.3s ease;
}

/* Media Icon Badge */
.tv-section .section-header p:first-child::before {
    content: '\f03d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* ===================================
   Contact CTA Section
   =================================== */
.contact-cta-section {
    background: var(--color-navy);
    padding: 5rem 0;
    color: var(--color-white);
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-col h2 {
    color: var(--color-white);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-item i {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

.contact-form-card {
    background: var(--color-gold);
    padding: 2.5rem;
    border-radius: 0.75rem;
}

.contact-form-card h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form-card textarea {
    resize: vertical;
}

/* ===================================
   Sections
   =================================== */
.section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer h3 {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer ul li a:hover {
    color: var(--color-gold);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-list i {
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .competences-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .rdv-types-grid {
        grid-template-columns: 1fr;
    }

    .competences-grid-4 {
        grid-template-columns: 1fr;
    }

    .blog-grid-3 {
        grid-template-columns: 1fr;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr;
    }

    .stats-inline {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ===================================
   PREMIUM SECTIONS STYLES
   =================================== */

/* Process Timeline Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    align-items: start;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.4);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto 1rem;
    background: linear-gradient(135deg, var(--color-navy), #0a2d5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 6rem;
}

.process-connector::before {
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), #d4af37, var(--color-gold));
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.process-connector::after {
    content: '→';
    font-size: 1.5rem;
    color: var(--color-gold);
    background: white;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(193,154,107,0.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
    color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), #d4af37);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(193, 154, 107, 0.4);
    transition: var(--transition);
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card h3 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Animated Statistics Section */
.stats-animated-section {
    margin-top: 2rem;
}

.stats-animated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-animated-box {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.1), rgba(193, 154, 107, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(193, 154, 107, 0.2);
    transition: var(--transition);
}

.stat-animated-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.2);
}

.stat-animated-box .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-animated-box h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-animated-box p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-container {
    max-width: 900px;
    margin: 1.5rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: rgba(193, 154, 107, 0.05);
}

.faq-question h3 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: var(--transition);
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design for Premium Sections */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-connector {
        display: none;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .process-section,
    .why-choose-section,
    .faq-section {
        padding: 3rem 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .stats-animated-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .stats-animated-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .why-choose-card {
        padding: 2rem 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    width: auto;
    padding: 0 25px;
    border-radius: 50px;
    color: white;
}

.whatsapp-text {
    display: none;
    font-size: 16px;
    margin-left: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline-block;
}

.whatsapp-float i {
    margin-top: 2px;
}

/* ===================================
   Competences Page - PREMIUM REDESIGN
   =================================== */

/* Premium Section Background */
.competences-premium-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.competences-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(193, 154, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 58, 91, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.competence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.competence-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(193, 154, 107, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Animated gradient border on hover */
.competence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-gold), #d4af37, var(--color-navy));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.competence-card:hover::before {
    opacity: 1;
}

/* Decorative corner accent */
.competence-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.competence-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(193, 154, 107, 0.2);
}

.competence-card:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

.competence-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 50%, #c89b5f 100%);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow:
        0 8px 24px rgba(193, 154, 107, 0.35),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.competence-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.competence-card:hover .competence-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow:
        0 12px 32px rgba(193, 154, 107, 0.5),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.competence-card:hover .competence-icon::before {
    opacity: 1;
}

.competence-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.competence-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transition: width 0.4s ease;
}

.competence-card:hover h3::after {
    width: 60px;
}

.competence-card p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
    font-size: 1.05rem;
}

.competence-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.75rem;
    border-radius: 16px;
    margin-top: auto;
    border: 1px solid rgba(193, 154, 107, 0.08);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.competence-services h4 {
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.competence-services h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, var(--color-gold), #d4af37);
    margin-right: 10px;
    border-radius: 2px;
}

.competence-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.competence-services ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #666;
    transition: all 0.3s ease;
}

.competence-services ul li:last-child {
    border-bottom: none;
}

.competence-services ul li:hover {
    color: var(--color-navy);
    padding-left: 8px;
}

.competence-services ul li i {
    color: var(--color-gold);
    margin-right: 0.85rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.competence-services ul li:hover i {
    transform: scale(1.2);
}

/* Responsive Competences */
@media (max-width: 992px) {
    .competence-grid {
        grid-template-columns: 1fr;
    }

    .competence-card {
        padding: 2.5rem 2rem;
    }
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu .dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}




/* Navigation Menu Button Styles - Override */
.nav-menu {
    gap: 1rem !important;
}

.nav-menu a {
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    background: var(--color-navy) !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.nav-menu a::after {
    display: none !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--color-gold) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.3);
}

/* Logo Size Reduction */
.logo img {
    height: 80px !important;
    width: auto !important;
}

/* Dropdown Menu Styles - Classic Design */
.nav-dropdown {
    position: relative;
}

.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 220px;
    background: transparent;
    /* Removed white background */
    display: none;
    /* Changed from visibility/opacity to display */
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    z-index: 9999;
    /* Increased Z-index */
    box-shadow: none;
    /* Removed shadow */
    border-radius: 0.5rem;
    border: none;
    /* Removed border */
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    /* Force display */
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem !important;
    color: white !important;
    text-decoration: none;
    transition: all 0.25s ease !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    background: var(--color-gold) !important;
    border-radius: 0.5rem !important;
    border-left: 3px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-menu a:hover {
    background: #d4af37 !important;
    color: white !important;
    border-left-color: white;
    padding-left: 1.75rem !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.4);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding-left: 2rem !important;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2.5rem !important;
    }

    /* TV Videos Grid - Mobile */
    .tv-videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tv-section {
        padding: 3rem 0;
    }
}

/* ===================================
   Blog/News Styles
   =================================== */
.blog-card {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-navy);
    line-height: 1.4;
}

.blog-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    margin-top: auto;
    color: var(--color-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--color-navy);
    gap: 0.75rem;
}

/* ===================================
   Enhanced Form Inputs & Interactive Cards
   =================================== */

/* Form Input Focus States */
.form-input:focus {
    outline: none;
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.form-input {
    transition: all 0.3s ease;
}

/* RDV Type Selection Hover */
.rdv-type-selection:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-gold) !important;
}

/* Contact Info Card Hover */
.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

/* Value Card Hover */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Article Content Styling */
.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-navy);
    font-size: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-gray-light);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
    font-size: 1.4rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--color-navy);
}

.article-content blockquote {
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-gray);
}

.article-content img {
    border-radius: 0.75rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

/* ===================================
   MOBILE RESPONSIVE FIXES
   =================================== */
@media (max-width: 991px) {

    .hero-grid,
    .about-grid,
    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-photo-col {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .blog-grid-3,
    .competences-grid-4,
    .rdv-types-grid {
        grid-template-columns: 1fr;
    }

    .header-top-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .contact-info a {
        justify-content: center;
        text-align: center;
        margin: 0;
    }

    .navbar-content {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 2px;
        margin-top: 0.35rem;
        padding: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        position: relative;
    }

    .nav-menu a {
        display: block !important;
        width: 100%;
        padding: 0.35rem 0 !important;
        font-size: 0.95rem;
        background: var(--color-navy);
        border-radius: 3px;
        line-height: 1.2;
        color: white !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        transform: none;
        box-shadow: none;
        background: var(--color-gold) !important;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Fix Mobile Dropdown */
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: block;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none;
        margin: 0;
        padding: 0;
        min-width: auto;
        border: none;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        background: transparent !important;
        padding: 0.25rem 0 !important;
        font-size: 0.85rem;
        opacity: 0.9;
    }

    .hero-modern {
        padding: 2rem 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }


    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem !important;
    }

    .contact-info-card>div:first-child {
        margin-bottom: 1rem;
    }

    /* Form spacing on mobile */
    .card {
        padding: 1.5rem !important;
    }
}

/* Responsive Grid Helper */
.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}