/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    --primary-color: #8B1538;
    --primary-dark: #6B0F2A;
    --primary-light: #A52A4A;
    --secondary-color: #C9A961;
    --accent-color: #D4AF37;
    --text-dark: #2C1810;
    --text-light: #6B5B4F;
    --text-white: #FDF5E6;
    --text-cream: #FDF5E6;
    --bg-light: #FAF8F3;
    --bg-white: #FFFFFF;
    --border-color: #E8DCC6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #8B1538 0%, #A52A4A 100%);
    --gradient-hero: linear-gradient(135deg, #8B1538 0%, #9B1F3A 50%, #A52A4A 100%);
    --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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-cream);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--primary-color);
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(139, 21, 56, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-cream);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-cream);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-cream);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9) 0%, rgba(165, 42, 74, 0.85) 100%);
    z-index: -1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    color: var(--text-cream);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-image-side {
    position: relative;
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-background::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    text-align: left;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
}

.hero-title .highlight {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.98;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--text-cream);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--text-cream);
    border: 2px solid var(--text-cream);
}

.btn-secondary:hover {
    background: var(--text-cream);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-advantages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.advantage-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 3px solid var(--accent-color);
}

.advantage-box svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.advantage-box strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.advantage-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: 100px 0;
    background: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-cream);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--primary-dark);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.7;
}

.services-offered {
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
}


.service-card.highlight-card {
    border: 2px solid var(--accent-color);
    background: var(--primary-dark);
}

.service-card.highlight-card .service-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #C9A961 100%);
}

.region-info-box {
    background: var(--primary-dark);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.region-info-box svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.region-info-box strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-cream);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.region-info-box p {
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.8;
    margin: 0;
}

.region-info-box p strong {
    display: inline;
    color: var(--accent-color);
    font-weight: 600;
    font-size: inherit;
    margin: 0;
}

.services-not-offered {
    background: var(--primary-dark);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(253, 245, 230, 0.2);
}

.not-offered-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.not-offered-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-cream);
    opacity: 0.9;
    font-weight: 500;
}

.not-offered-item svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

/* ============================================
   Requirements Section
   ============================================ */

.requirements {
    padding: 100px 0;
    background: var(--primary-color);
}

.requirements-content {
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-main {
    margin-bottom: 4rem;
}

.requirement-box {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin: 0 auto;
}

.requirement-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.requirement-icon svg {
    width: 80px;
    height: 80px;
    color: var(--text-white);
}

.dm-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.requirement-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.requirement-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.documents-section {
    margin-top: 4rem;
}

.documents-intro {
    text-align: center;
    color: var(--text-cream);
    opacity: 0.9;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.document-card {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    position: relative;
    transition: var(--transition);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.document-card.important {
    border-color: var(--accent-color);
    background: var(--primary-dark);
}

.document-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.document-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0 0.75rem;
    color: var(--accent-color);
}

.document-card p {
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.7;
    margin: 0;
}

.documents-warning {
    background: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(253, 245, 230, 0.2);
    border-left: 4px solid var(--accent-color);
}

.documents-warning svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.documents-warning div {
    color: var(--text-cream);
    opacity: 0.9;
}

.documents-warning strong {
    color: var(--text-cream);
}

/* ============================================
   Pitch Deck Section
   ============================================ */

.pitch-deck {
    padding: 100px 0;
    background: var(--primary-color);
}

.pitch-content {
    max-width: 900px;
    margin: 0 auto;
}

.pitch-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 2rem 0 1rem;
}

.pitch-text h3:first-child {
    margin-top: 0;
}

.pitch-text p {
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pitch-process {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pitch-step {
    flex: 1;
    min-width: 250px;
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(253, 245, 230, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.step-content p {
    color: var(--text-cream);
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.pitch-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.pitch-offer-box {
    background: var(--primary-dark);
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pitch-offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-header svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.offer-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 1rem;
    color: var(--text-cream);
    opacity: 0.9;
    font-weight: 500;
}

.offer-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-cream);
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: center;
}

.market-prices {
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border: 1px solid rgba(253, 245, 230, 0.2);
}

.market-prices p {
    font-weight: 600;
    color: var(--text-cream);
    margin-bottom: 1rem;
}

.market-prices ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.market-prices li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.6;
}

.market-prices li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.market-prices li:last-child {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(253, 245, 230, 0.2);
}

.offer-note {
    background: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0;
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.8;
    border: 1px solid rgba(253, 245, 230, 0.2);
    border-left: 4px solid var(--accent-color);
}

.offer-note strong {
    color: var(--text-cream);
}

/* ============================================
   Process Section
   ============================================ */

.process {
    padding: 100px 0;
    background: var(--primary-color);
}

.process-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.process-image-side {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.process-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.process-image-side:hover .process-image {
    transform: scale(1.02);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.step-icon {
    flex-shrink: 0;
}

.step-icon .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.process-step p {
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.7;
    margin: 0;
}

.process-connector {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    margin: 0 auto;
    margin-left: 29px;
    opacity: 0.3;
}

.process-step:last-child .process-connector {
    display: none;
}

/* ============================================
   Communication Section
   ============================================ */

.communication {
    padding: 100px 0;
    background: var(--primary-color);
}

.communication-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.comm-point {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.comm-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comm-point svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.comm-point h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.comm-point p {
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 100px 0;
    background: var(--primary-color);
}

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

.about-image-side {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-side:hover .about-image {
    transform: scale(1.03);
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-cream);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-cream);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-cream);
    font-weight: 500;
}

.about-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

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

.visual-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--text-white);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    width: 100%;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.advantage-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.advantage-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: 100px 0;
    background: var(--primary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-cream);
}

.info-item p {
    color: var(--text-cream);
    opacity: 0.9;
}

.contact-form {
    background: var(--primary-dark);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 245, 230, 0.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(253, 245, 230, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--primary-color);
    color: var(--text-cream);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(253, 245, 230, 0.6);
}

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

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-cream);
    opacity: 0.8;
    margin-top: 1rem;
    text-align: center;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(253, 245, 230, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(253, 245, 230, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--primary-color);
    color: var(--text-cream);
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--text-cream);
}

.documents-checklist {
    background: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(253, 245, 230, 0.2);
    border-left: 4px solid var(--accent-color);
}

.documents-checklist p {
    color: var(--text-cream);
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 500;
}

.documents-checklist ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.documents-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-cream);
    opacity: 0.9;
}

.documents-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.upload-note {
    font-size: 0.9rem;
    color: var(--text-cream);
    opacity: 0.8;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.6;
    cursor: pointer;
}

.contact-note {
    background: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
    border: 1px solid rgba(253, 245, 230, 0.2);
    border-left: 4px solid var(--accent-color);
}

.contact-note svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-note p {
    margin: 0;
    color: var(--text-cream);
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: var(--text-cream);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ============================================
   Animations
   ============================================ */

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

/* ============================================
   Responsive Design
   ============================================ */

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-main-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image-side {
        margin-bottom: 2rem;
    }

    .process-content-wrapper {
        grid-template-columns: 1fr;
    }

    .process-image-side {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-advantages {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .pitch-process {
        flex-direction: column;
    }

    .pitch-arrow {
        transform: rotate(90deg);
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-connector {
        width: 40px;
        height: 2px;
        margin: 0 auto;
        margin-left: auto;
        margin-right: auto;
    }

    .communication-points {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .not-offered-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .region-info-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .region-info-box svg {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .visual-card {
        padding: 2rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }


