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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #111827;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
    color: #4b5563;
}

/* ===================================
   LAYOUT & CONTAINERS
   =================================== */

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

.section {
    padding: 4rem 0;
}

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

/* About page specific styles */
.content-text h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 2rem;
    position: relative;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.feature-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #111827;
}

/* Mission & Vision Section */
.mission-vision {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mv-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.values {
    background: white;
}

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

.value-card {
    background: #f9fafb;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Awards Section */
.awards {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.award-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.award-card h3 {
    font-size: 1.375rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #6b7280;
    font-size: 0.975rem;
    margin: 0;
    font-weight: 500;
}

/* Stats Extended Section */
.stats-extended {
    background: white;
}

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

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #e5e7eb;
}

/* CTA Section Enhanced */
.cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/banner-bg.svg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: #dbeafe;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: #2563eb;
}

.cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 1rem 2rem;
    border: 2px solid #2563eb;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    color: #374151;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: 0.3s;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    background: white;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.service-card p {
    color: #6b7280;
}

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

.about-preview {
    background: #f9fafb;
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.stat h3 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    margin: 0;
}

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

.team-preview {
    background: white;
}

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

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #2563eb;
}

.team-card h3 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

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

/* ===================================
   SUCCESS STORIES
   =================================== */

.success-stories {
    background: #f9fafb;
}

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

.success-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon svg {
    width: 2rem;
    height: 2rem;
    color: #059669;
}

.success-value {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: #1e40af;
}

.cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #1e40af;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.contact-info {
    color: #9ca3af;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/banner-bg.svg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.page-header h1 {
    margin-bottom: 1rem;
    color: #111827;
    font-size: 3.5rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-meta {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid #2563eb;
}

.legal-meta p {
    margin: 0;
    color: #6b7280;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #111827;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    color: #374151;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h4 {
    color: #4b5563;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ol {
    list-style: decimal;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.contact-details {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.contact-details p {
    margin: 0;
    color: #4b5563;
}

.contact-details a {
    color: #2563eb;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* ===================================
   COOKIE SPECIFIC STYLES
   =================================== */

.cookie-table {
    background: #f9fafb;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    overflow: hidden;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-name {
    font-weight: 600;
    color: #111827;
    font-family: 'Courier New', monospace;
    background: #e5e7eb;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.cookie-purpose {
    color: #4b5563;
}

.cookie-duration {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: right;
}

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

/* ===================================
   COOKIE BANNER & MODAL
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: #4b5563;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background: #2563eb;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background: #1d4ed8;
}

.cookie-buttons button:nth-child(2) {
    background: #6b7280;
    color: white;
}

.cookie-buttons button:nth-child(2):hover {
    background: #4b5563;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.cookie-buttons button:last-child:hover {
    background: #2563eb;
    color: white;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #111827;
}

.cookie-option {
    margin-bottom: 1rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #4b5563;
}

.cookie-option input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #2563eb;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.6;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-modal-buttons button {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-modal-buttons button:first-child {
    background: #2563eb;
    color: white;
}

.cookie-modal-buttons button:first-child:hover {
    background: #1d4ed8;
}

.cookie-modal-buttons button:last-child {
    background: #6b7280;
    color: white;
}

.cookie-modal-buttons button:last-child:hover {
    background: #4b5563;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    color: #111827;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #4b5563;
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #2563eb;
}

.checkbox-label a {
    color: #2563eb;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    margin-top: 1rem;
}

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

.contact-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.contact-details strong {
    color: #111827;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: #2563eb;
}

.contact-details a:hover {
    text-decoration: underline;
}

.direct-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direct-contact {
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.direct-contact h4 {
    margin-bottom: 0.25rem;
    color: #111827;
    font-size: 1rem;
}

.direct-contact p {
    margin: 0 0 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.direct-contact a {
    color: #2563eb;
    font-size: 0.875rem;
}

.direct-contact a:hover {
    text-decoration: underline;
}

/* ===================================
   THANKS PAGE
   =================================== */

.thanks-section {
    background: white;
    text-align: center;
    padding: 6rem 0;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #059669;
}

.thanks-content h1 {
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-message {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 4rem;
}

.next-steps h2 {
    margin-bottom: 2rem;
    color: #111827;
}

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

.step {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.contact-urgency {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
    border-left: 4px solid #f59e0b;
}

.contact-urgency h3 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.contact-urgency p {
    color: #78350f;
    margin-bottom: 1rem;
}

.urgent-contacts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.urgent-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f59e0b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.urgent-contact:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.urgent-contact svg {
    width: 1rem;
    height: 1rem;
}

.resources-section {
    background: #f9fafb;
}

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

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #2563eb;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.testimonials-thanks {
    background: white;
}

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

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #2563eb;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #4b5563;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.author-info h4 {
    margin: 0 0 0.25rem;
    color: #111827;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.navigation-links {
    background: #f9fafb;
}

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

.nav-link-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.nav-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.nav-link-card svg {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
    margin: 0 auto 1rem;
}

.nav-link-card h3 {
    margin-bottom: 0.75rem;
    color: #111827;
}

.nav-link-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   DETAILED PAGES (SERVICES, TEAM, ETC.)
   =================================== */

.services-detailed .service-detail {
    margin-bottom: 6rem;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse .service-info {
    direction: ltr;
}

.service-icon-large {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #2563eb;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.service-features li::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
    width: 1.25rem;
    height: 1.25rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.service-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-stats .stat {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    min-width: 150px;
    text-align: center;
    box-shadow: none;
}

.service-stats .stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 0.25rem;
}

.service-stats .stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Team Detailed Styles */
.team-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.team-detailed-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.team-photo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo svg {
    width: 5rem;
    height: 5rem;
    color: #2563eb;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.team-title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.team-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.team-contact {
    display: flex;
    gap: 0.75rem;
}

.contact-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #2563eb;
    color: white;
}

.contact-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.team-contact-simple {
    margin-top: 1rem;
}

.team-contact-simple a {
    color: #2563eb;
    font-size: 0.875rem;
}

.team-contact-simple a:hover {
    text-decoration: underline;
}

/* Progress/Performance Styles */
.portfolio-performance {
    background: #f9fafb;
}

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

.performance-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.performance-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.performance-icon svg {
    width: 2rem;
    height: 2rem;
    color: #059669;
}

.performance-card h3 {
    margin-bottom: 1rem;
    color: #111827;
    font-size: 1.125rem;
}

.performance-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
    display: block;
}

.performance-period {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Recent Projects Timeline */
.projects-timeline {
    position: relative;
}

.projects-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.project-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.project-item::before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #2563eb;
    border-radius: 50%;
    z-index: 1;
}

.project-date {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.875rem;
}

.project-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.project-content h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.project-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.project-stats .stat {
    background: #f9fafb;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: none;
}

.project-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.completed {
    background: #dcfce7;
    color: #166534;
}

.project-status.active {
    background: #dbeafe;
    color: #1e40af;
}

/* Charts and Analytics */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.chart-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.chart-card h3 {
    margin-bottom: 2rem;
    color: #111827;
    text-align: center;
}

.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    height: 200px;
    padding: 1rem 0;
}

.bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    background: linear-gradient(to top, #2563eb, #3b82f6);
    border-radius: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 20px;
}

.bar:hover {
    background: linear-gradient(to top, #1d4ed8, #2563eb);
    transform: scale(1.05);
}

.bar.active {
    background: linear-gradient(to top, #059669, #10b981);
}

.bar-value {
    position: absolute;
    top: -1.5rem;
    color: #111827;
    font-weight: 600;
    font-size: 0.875rem;
}

.bar-year {
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
}

.line-chart {
    position: relative;
    height: 200px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

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

.esg-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.esg-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.esg-icon svg {
    width: 2rem;
    height: 2rem;
    color: #059669;
}

.esg-stats {
    margin-top: 1.5rem;
}

.esg-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.esg-stat:last-child {
    border-bottom: none;
}

.esg-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.esg-stat .stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Market Analysis */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.analysis-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.analysis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.analysis-header h3 {
    margin: 0;
    color: #111827;
}

.trend-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.trend-indicator.positive {
    background: #dcfce7;
    color: #166534;
}

.trend-indicator.stable {
    background: #fef3c7;
    color: #92400e;
}

.trend-indicator svg {
    width: 1rem;
    height: 1rem;
}

.analysis-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.analysis-points {
    list-style: none;
}

.analysis-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.analysis-points li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    width: 1rem;
}

/* Investment Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    margin-bottom: 0.75rem;
    color: #111827;
}

.step-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

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

.package-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.package-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.package-header {
    background: #f9fafb;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.package-card.featured .package-header h3 {
    color: white;
}

.package-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.package-card.featured .package-amount {
    color: white;
}

.package-features {
    padding: 2rem;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.package-features li::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
    width: 1.25rem;
    height: 1.25rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.package-cta {
    padding: 0 2rem 2rem;
}

.package-cta .btn-primary,
.package-cta .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Benefits/Why Choose Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: #d97706;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.benefit-card p {
    color: #6b7280;
    margin: 0;
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-detailed-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-photo {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* About page mobile styles */
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    .content-text h2 {
        font-size: 1.875rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
    }
    
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .award-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .project-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .projects-timeline::before {
        display: none;
    }
    
    .project-item::before {
        display: none;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .urgent-contacts {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-table .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cookie-duration {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .legal-document {
        padding: 2rem 1rem;
    }
    
    .performance-overview {
        grid-template-columns: 1fr;
    }
    
    .bar-chart {
        height: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* About page extra small screens */
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .mv-card,
    .value-card,
    .award-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-box {
        padding: 2rem 1rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .cta,
    .hero-background {
        display: none;
    }
    
    .page-header {
        margin-top: 0;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .section {
        padding: 1rem 0;
        break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        break-after: avoid;
    }
    
    .legal-document {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid;
    }
    
    .btn-secondary {
        background: white;
    }
    
    .service-card,
    .team-card,
    .success-card {
        border: 2px solid #374151;
    }
}
