/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Professional Law Firm Palette */
    --primary-navy: #000000;
    --secondary-navy: #1a1a1a;
    --accent-navy: #333333;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f1f5f9;
    --off-white: #fefefe;
    --pure-white: #ffffff;
    --gold-accent: #c9a96e;
    --copper-accent: #b8956a;
    --success-green: #059669;
    --error-red: #dc2626;
    --warning-amber: #d97706;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --section-padding: 140px 0;
    --container-padding: 0 24px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-gray), var(--accent-navy));
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.nav-logo span {
    font-size: 13px;
    color: var(--medium-gray);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
    font-family: var(--font-body);
    letter-spacing: 0.025em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--medium-gray);
    transition: width var(--transition-medium);
}

.nav-menu a:hover {
    color: var(--medium-gray);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 160px 0 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 50%, var(--accent-navy) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('fundodasessão.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(229, 229, 229, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
    height: 100vh;
    margin-bottom: 0;
    z-index: 10;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100vh;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    transition: all var(--transition-medium);
    transform: scale(1.0);
    object-fit: cover;
    object-position: bottom right;
}



.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--medium-gray), var(--accent-navy));
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
}

.hero-placeholder i {
    font-size: 120px;
    color: var(--medium-gray);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid var(--light-gray);
}

.trust-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.8s; }
.trust-item:nth-child(2) { animation-delay: 1s; }
.trust-item:nth-child(3) { animation-delay: 1.2s; }
.trust-item:nth-child(4) { animation-delay: 1.4s; }

.trust-item i {
    font-size: 32px;
    color: var(--medium-gray);
    margin-bottom: 12px;
}

.trust-item span {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary-navy);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-details h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-navy);
    margin: 32px 0 16px;
}

.about-details ul {
    list-style: none;
    margin-bottom: 32px;
}

.about-details li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--dark-gray);
}

.about-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-slideshow {
    width: 350px;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    animation: slideshow-entrance 1s ease-out;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    filter: brightness(1) contrast(1.1);
}

.slideshow-image.fade-transition {
    opacity: 0;
    transform: scale(1.1);
}

.slideshow-image.zoom-transition {
    transform: scale(0.9);
    opacity: 0.7;
}

.slideshow-image.slide-transition {
    transform: translateX(100%);
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(26, 54, 93, 0.1) 0%,
        transparent 50%,
        rgba(26, 54, 93, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.about-slideshow:hover .slideshow-overlay {
    opacity: 1;
}

.slideshow-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.slideshow-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.slideshow-btn:hover {
    background: var(--pure-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slideshow-btn i {
    color: var(--primary-navy);
    font-size: 16px;
    transition: color 0.3s ease;
}

.slideshow-btn:hover i {
    color: var(--accent-navy);
}

.slideshow-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0 10px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator-dot.active {
    background: var(--primary-navy);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(26, 54, 93, 0.5);
}

.indicator-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.indicator-dot:hover::before {
    left: 100%;
}

.slideshow-progress {
    width: 100%;
    height: 3px;
    background: rgba(26, 54, 93, 0.2);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-navy));
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: progress-shine 2s ease-in-out infinite;
}

/* Slideshow Transition Effects */
.slideshow-image.fade-transition {
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.5s ease-in-out;
}

.slideshow-image.zoom-transition {
    opacity: 0;
    transform: scale(0.8) rotate(2deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slideshow-image.slide-transition {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: all 0.5s ease-out;
}

/* Enhanced About Section Animation */
.about-slideshow:hover .slideshow-image {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.05);
}

.about-slideshow:hover .slideshow-controls {
    opacity: 1;
}

.about-slideshow:hover .slideshow-indicators {
    opacity: 1;
}

/* Pulse Animation for Active Indicator */
.indicator-dot.active {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(201, 169, 97, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(201, 169, 97, 0.8);
        transform: scale(1.1);
    }
}

@keyframes slideshow-entrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes progress-shine {
    0%, 100% { transform: translateX(-20px); opacity: 0; }
    50% { transform: translateX(0); opacity: 1; }
}

/* Hover effects for the entire slideshow */
.about-slideshow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-slideshow:hover .slideshow-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--pure-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--copper-accent));
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(201, 169, 110, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: var(--pure-white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-card > p {
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--dark-gray);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.service-cta:hover {
    color: var(--copper-accent);
}

/* ===== ARTICLES SECTION ===== */
.articles {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.article-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(241, 245, 249, 0.8);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 169, 110, 0.2);
}

.article-date {
    color: var(--gold-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.article-link:hover {
    color: var(--copper-accent);
}

/* Expandable Article Styles */
.article-summary {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-full-content {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(241, 245, 249, 0.8);
    animation: fadeIn 0.3s ease-in-out;
}

.article-full-content p {
    margin-bottom: 16px;
}

.article-full-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.article-full-content li {
    margin-bottom: 8px;
}

.article-full-content strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.article-toggle {
    background: var(--gold-accent);
    color: var(--pure-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.article-toggle:hover {
    background: var(--copper-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.article-toggle:active {
    transform: translateY(0);
}

/* Article Images Styles */
.article-images {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.article-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    object-fit: cover;
}

.article-images .article-image {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    height: 200px;
}

.article-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro {
    margin-bottom: 48px;
}

.contact-intro h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact-intro p {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(241, 245, 249, 0.8);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-accent), var(--copper-accent));
    transform: scaleY(0);
    transition: transform var(--transition-medium);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.2);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item i {
    font-size: 28px;
    color: var(--gold-accent);
    margin-top: 2px;
    min-width: 28px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(184, 149, 106, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-item p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.contact-form {
    background: var(--pure-white);
    padding: 56px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(241, 245, 249, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--copper-accent));
    z-index: 1;
}

.contact-form-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-form-header h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-form-header p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 15px;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid rgba(241, 245, 249, 0.8);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all var(--transition-medium);
    background: rgba(248, 250, 252, 0.5);
    font-weight: 400;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 40px;
}

.form-submit-wrapper .btn {
    min-width: 200px;
    font-size: 17px;
    padding: 20px 40px;
}

.form-note {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.form-note i {
    color: var(--gold-accent);
    margin-right: 6px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--pure-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="60" cy="40" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gold-accent);
    font-size: 20px;
    letter-spacing: -0.01em;
}

.footer-section p,
.footer-section li {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-section i {
    margin-right: 8px;
    color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--copper-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

/* ===== MISSION, VISION AND VALUES SECTION ===== */
.mission-vision-values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    position: relative;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-gray), var(--accent-navy));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--medium-gray), var(--accent-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    transition: all var(--transition-medium);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mvv-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.mvv-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
}

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

.values-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-gray);
    transition: all var(--transition-fast);
}

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

.values-list li:hover {
    color: var(--accent-navy);
    padding-left: 10px;
}

.values-list li i {
    color: var(--medium-gray);
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
    transition: all var(--transition-fast);
}

.values-list li:hover i {
    color: var(--accent-navy);
    transform: scale(1.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        max-width: 900px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mvv-card {
        padding: 35px 25px;
    }
}

/* Large Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 100px 0;
        --container-padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--pure-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        transition: left var(--transition-medium);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: none;
        width: 100%;
        height: 80vh;
    }
    
    .hero-main-image {
        max-width: none;
        width: 100%;
        height: 80vh;
        object-fit: cover;
        object-position: center bottom;
    }
    
    .hero-image-decoration {
        width: 60px;
        height: 60px;
        top: -10px;
        right: -10px;
    }
    
    .hero-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .hero-placeholder i {
        font-size: 80px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mission-vision-values {
        padding: 80px 0;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .mvv-card {
        padding: 30px 20px;
    }
    
    .mvv-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .mvv-card h3 {
        font-size: 24px;
    }
    
    .about {
        margin-top: 0;
        padding-top: var(--section-padding);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 16px;
        --section-padding: 80px 0;
    }
    
    .hero {
        padding: 140px 0 0;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-image-container {
        max-width: none;
        width: 100%;
        height: 100vh;
        margin-bottom: 0;
    }
    
    .hero-main-image {
        max-width: none;
        width: 100%;
        height: 100vh;
        object-fit: contain;
        object-position: center bottom;
        margin-bottom: 0;
    }
    
    .hero-image {
        height: 100vh;
        margin-bottom: 0;
    }
    
    .hero-image-decoration {
        width: 50px;
        height: 50px;
        top: -8px;
        right: -8px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .nav-logo h1 {
        font-size: 28px;
    }
}
