/* ==========================================
   TAXADV - PREMIUM LAW WEBSITE - REGALIS STYLE
   Professional, Modern, Elegant Design
   ========================================== */

:root {
    --navy: #007082; /* Azul-escuro principal */
    --navy-light: #005F6E; /* Azul-médio */
    --navy-lighter: #008899; /* Azul-claro */
    --accent: #D1C4B6; /* Bege-dourado claro */
    --accent-light: #E0D4C6; /* Bege-dourado mais claro */
    --accent-dark: #B8A898; /* Bege-dourado mais escuro */
    --btn-bg: #FAF0E8; /* Cor dos botões de ação */
    --btn-bg-hover: #E8DED4; /* Cor dos botões de ação no hover */
    --white: #ffffff;
    --beige: #F8F5F0; /* Bege super claro */
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --text-dark: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 112, 130, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 112, 130, 0.15);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col-md-5 {
    flex: 0 0 41%;
    max-width: 41%;
}

.col-md-6 {
    flex: 0 0 48%;
    max-width: 48%;
}

.col-md-7 {
    flex: 0 0 57%;
    max-width: 57%;
}

@media (max-width: 1024px) {
    .col-md-5, .col-md-6, .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================
   HEADER - SEMI-TRANSPARENT PREMIUM STYLE
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent);
}

.logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.3s ease;
}

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

.nav a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

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

/* ==========================================
   HERO - REGALIS PREMIUM STYLE
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(0, 112, 130, 0.75) 0%, rgba(0, 112, 130, 0.7) 50%, rgba(0, 112, 130, 0.75) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat scroll;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(209, 196, 182, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(209, 196, 182, 0.05) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    color: var(--white);
    text-align: left;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 0;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.7rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-tagline span {
    color: var(--accent);
    font-weight: 800;
}

.hero-title {
    font-size: clamp(1.9rem, 3.8vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    font-size: 0.975rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    font-size: 1.1em;
    line-height: 1;
}

.btn-primary {
    background: var(--btn-bg);
    color: var(--navy);
    border-color: rgba(0, 112, 130, 0.12);
    box-shadow:
        0 1px 3px rgba(0, 112, 130, 0.06),
        0 1px 2px rgba(0, 112, 130, 0.04);
}

.btn-primary:hover {
    background: var(--btn-bg-hover);
    border-color: rgba(0, 112, 130, 0.2);
    transform: translateY(-1px);
    box-shadow:
        0 8px 24px rgba(0, 112, 130, 0.10),
        0 3px 8px rgba(0, 112, 130, 0.06);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 2px 6px rgba(0, 112, 130, 0.08),
        0 1px 3px rgba(0, 112, 130, 0.04);
}

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

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

/* ==========================================
   SECTIONS - PREMIUM DESIGN
   ========================================== */

.section {
    padding: 120px 0;
    position: relative;
}

.section-gray {
    background: var(--beige);
}

.section-dark-mvv {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 95, 110, 0.90) 0%, rgba(0, 112, 130, 0.84) 50%, rgba(0, 136, 153, 0.90) 100%),
        var(--mvv-bg-image, url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80')) center/cover no-repeat fixed;
    isolation: isolate;
}

.section-dark-mvv::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
                radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-dark-mvv > .container {
    position: relative;
    z-index: 1;
}

.section-dark-mvv .section-title {
    margin-bottom: 80px;
}

.section-dark-mvv .section-subtitle {
    color: rgba(250, 240, 232, 0.88);
}

.section-dark-mvv .section-title h2 {
    color: var(--white);
}

.section-dark-mvv .section-title p {
    color: rgba(255, 255, 255, 0.84);
}

.section-dark-mvv .mvv-card:not(.mvv-card--primary) {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.08);
}

.section-dark-mvv .mvv-card:not(.mvv-card--primary):hover {
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
}

.section-dark-mvv .mvv-card--primary {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.section-dark-mvv .mvv-card--primary:hover {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 8px;
    z-index: 1;
}

.about-image.about-image--short {
    height: 300px;
    display: flex;
    align-items: center;
}

.about-image.about-image--short img {
    max-height: 300px;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-left: auto;
}

.about-image.about-image--short::before {
    width: 88%;
    height: 100%;
    left: 12%;
    top: 0;
    transform: translateY(0);
}

.about-content h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.25;
}

.about-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-list li::before {
    content: '✓';
    background: var(--accent);
    color: var(--navy);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}

/* ==========================================
   AREAS CARDS - PREMIUM
   ========================================== */

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 28px 24px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--accent);
}

.blog-content h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--accent);
}

.blog-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-link {
    color: var(--navy);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--accent);
    gap: 12px;
}

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

.area-card {
    background: var(--white);
    padding: 25px 24px 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.area-card:hover {
    background: var(--navy);
    color: var(--white);
}

.area-icon {
    width: 55px;
    height: 55px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    background: var(--accent);
    color: var(--navy);
}

.area-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.area-card:hover h3 {
    color: var(--white);
}

.area-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.area-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.btn-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.area-card:hover .btn-link {
    color: var(--accent);
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

.client-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.client-card-icon {
    width: 70px;
    height: 70px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.client-card-icon i {
    color: var(--navy);
    font-size: 1.8rem;
}

.client-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 700;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.differentials-left-title {
    font-family: serif;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--white);
    margin: 0;
}

.differential-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}

.differential-card-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.differential-card-icon i {
    color: var(--accent);
    font-size: 1.3rem;
}

.differential-card h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.25rem;
}

.differential-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: 1fr;
    }
}



.audience-section {
    background: var(--navy);
    padding: 80px 60px;
    border-radius: 8px;
    position: relative;
}

.audience-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 32px;
    font-weight: 800;
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.3rem;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.audience-list li:hover {
    color: var(--accent);
}

.audience-list i {
    color: var(--accent);
    font-size: 1.8rem;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(26, 83, 92, 0.8), transparent);
}

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.team-role {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-oab {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ==========================================
   BLOG CARDS
   ========================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    transition: all 0.4s ease;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card:hover .blog-image {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    color: var(--white);
}

.blog-content {
    padding: 32px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--navy-light);
}

.blog-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Seção MVV na Homepage */
.section-mvv {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* ==========================================
   MVV - Missão, Visão e Valores
   ========================================== */

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 0;
}

.mvv-card {
    background: var(--white);
    border-radius: 12px;
    padding: 48px 36px;
    box-shadow: 0 4px 24px rgba(0, 112, 130, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 112, 130, 0.06);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--navy-lighter));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 112, 130, 0.14);
}

.mvv-card:hover::before {
    opacity: 1;
}

.mvv-card--primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(26, 83, 92, 0.2);
    transform: translateY(-8px);
}

.mvv-card--primary::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 1;
}

.mvv-card--primary:hover {
    transform: translateY(-14px);
    box-shadow: 0 20px 56px rgba(26, 83, 92, 0.28);
}

.mvv-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 112, 130, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
    margin: 0 auto 28px auto;
    transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
    background: rgba(0, 112, 130, 0.14);
    transform: scale(1.08) rotate(5deg);
}

.mvv-card--primary .mvv-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--accent);
}

.mvv-card--primary:hover .mvv-icon {
    background: rgba(255, 255, 255, 0.22);
}

.mvv-card h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--navy);
}

.mvv-card p,
.mvv-card li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-dark);
}

.mvv-card p {
    margin: 0;
    text-align: left;
}

.mvv-card--primary h3 {
    color: var(--white);
}

.mvv-card--primary p {
    color: rgba(255, 255, 255, 0.92);
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mvv-values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 112, 130, 0.06);
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.mvv-values-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mvv-values-list li:first-child {
    padding-top: 0;
}

.mvv-values-list li i {
    color: var(--navy);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.mvv-card--primary .mvv-values-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
}

.mvv-card--primary .mvv-values-list li i {
    color: var(--accent);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    padding: 50px;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: var(--navy);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--navy-light);
}

.modal-content h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.modal-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
}

.modal-content ul li i {
    color: var(--navy);
    font-size: 1.2rem;
}

.modal-content .modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.1) 0%, rgba(26, 83, 92, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin: 0 auto 25px auto;
}

@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .mvv-card--primary {
        transform: none;
    }
}

@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .mvv-card {
        padding: 40px 28px;
    }
    
    .mvv-card h3 {
        font-size: 1.4rem;
    }
    
    .mvv-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

/* ==========================================
   CTA SECTION - PREMIUM
   ========================================== */

.cta-section {
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.95) 0%, rgba(79, 157, 166, 0.92) 100%),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-item-text a:hover {
    color: var(--navy);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: transparent;
}

.form-control:focus {
    outline: none;
    border-color: var(--navy);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* ==========================================
   FOOTER - PREMIUM
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--navy) 0%, #142830 100%);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 100%, rgba(209, 196, 182, 0.08) 0%, transparent 70%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-about h3 span {
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    font-weight: 900;
}

.scroll-top:hover {
    background: var(--accent-dark);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1280px) {
    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
        font-size: 2rem !important;
    }
    .header-inner {
        gap: 16px;
    }
    .logo img {
        max-height: 60px !important;
        max-width: 100% !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
    }
    .header .btn.btn-primary {
        display: none !important;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        order: 1;
    }
    .hero-image {
        order: 2;
        justify-content: center;
    }
    .hero-image img {
        max-height: 350px;
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image.about-image--short {
        height: auto;
        width: 100%;
    }
    .about-image.about-image--short img {
        max-height: 340px;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .about-image.about-image--short::before {
        width: 100%;
        height: 100%;
        left: -20px;
        top: -20px;
    }
    .audience-section {
        padding: 50px 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        order: 1;
    }
    .hero-image {
        order: 2;
        justify-content: center;
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        order: 1;
    }
    .hero-image {
        order: 2;
        justify-content: center;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .areas-grid,
    .stats-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .audience-section {
        padding: 40px 30px;
    }
    .audience-section h2 {
        font-size: 1.6rem;
    }
    .audience-list li {
        font-size: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 80px 0;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--navy-light);
}
