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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f4c81;
    --accent-light: #3a7ca5;
    --gold: #d4af37;
    --text: #e8e8e8;
    --text-dark: #1a1a2e;
    --bg: #0f0f1e;
    --surface: #1e1e3f;
    --border: rgba(212, 175, 55, 0.2);
    --glow: rgba(212, 175, 55, 0.4);
    --shadow: rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1.5rem;
    color: rgba(232, 232, 232, 0.85);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(232, 232, 232, 0.9);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

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

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--surface), var(--secondary));
    padding: 24px;
    box-shadow: 0 -4px 24px var(--shadow);
    z-index: 10000;
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--gold);
    color: var(--text-dark);
}

.cookie-btn.accept:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.cookie-btn.decline:hover {
    background: var(--surface);
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    white-space: nowrap;
}

.floating-contact {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.4s ease;
}

.floating-contact:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-search {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    color: var(--accent-light);
    transform: scale(1.1);
}

.search-form {
    display: none;
    position: absolute;
    top: 100%;
    right: 24px;
    margin-top: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 8px 24px var(--shadow);
}

.search-form.active {
    display: block;
}

.search-form input {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    color: var(--text);
    font-family: 'Work Sans', sans-serif;
    width: 280px;
}

.nav-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    color: var(--text-dark);
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.4);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 82px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95), rgba(26, 26, 46, 0.85));
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(15, 15, 30, 0.95), rgba(26, 26, 46, 0.85));
    }
    50% {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 76, 129, 0.8));
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.accent-underline {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-light));
    border-radius: 2px;
    box-shadow: 0 0 20px var(--glow);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(232, 232, 232, 0.8);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gold);
    font-size: 14px;
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    display: block;
    margin-top: 8px;
    font-size: 20px;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.values-section {
    padding: 120px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(232, 232, 232, 0.7);
}

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

.value-card {
    background: linear-gradient(135deg, var(--surface), var(--secondary));
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.value-card:hover::before {
    opacity: 0.15;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--gold);
}

.value-card p {
    margin: 0;
    font-size: 0.95rem;
}

.services-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg), var(--secondary));
}

.splide__slide {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.splide__slide.is-active {
    opacity: 1;
}

.service-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 16px;
    color: var(--gold);
}

.service-content p {
    flex: 1;
    margin-bottom: 24px;
}

.service-link {
    color: var(--gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

.approach-section {
    padding: 120px 0;
    background: var(--bg);
}

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

.approach-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.approach-content h2 {
    margin-bottom: 24px;
}

.approach-content > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.approach-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--gold);
    transform: translateX(8px);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
    color: var(--gold);
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
}

.approach-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

.approach-image img {
    width: 100%;
    height: auto;
}

.expertise-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary), var(--bg));
}

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

.expertise-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.expertise-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expertise-card:hover img {
    transform: scale(1.05);
}

.expertise-content {
    padding: 24px;
}

.expertise-content h3 {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 1.25rem;
}

.expertise-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cta-image-section {
    padding: 120px 0;
    background: var(--bg);
}

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

.cta-content h2 {
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.cta-features {
    margin: 32px 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cta-feature i {
    color: var(--gold);
    font-size: 20px;
}

.cta-feature span {
    font-weight: 500;
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

.cta-image img {
    width: 100%;
    height: auto;
}

.main-footer {
    background: linear-gradient(180deg, var(--bg), var(--primary));
    border-top: 1px solid var(--border);
    padding-top: 80px;
}

.footer-content {
    padding-bottom: 40px;
}

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer-section p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-note {
    font-size: 0.875rem;
    color: rgba(232, 232, 232, 0.6);
    font-style: italic;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(232, 232, 232, 0.6);
}

.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg), var(--secondary));
    border-bottom: 1px solid var(--border);
}

.page-header-content h1 {
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 1.25rem;
    color: rgba(232, 232, 232, 0.7);
    margin: 0;
}

.mission-intro {
    padding: 120px 0;
    background: var(--bg);
}

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

.mission-intro-content h2 {
    margin-bottom: 32px;
}

.mission-intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

.philosophy-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary), var(--bg));
}

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

.philosophy-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
}

.philosophy-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0.3;
}

.philosophy-card h3 {
    margin-bottom: 16px;
    color: var(--gold);
}

.philosophy-card p {
    margin: 0;
}

.approach-detail-section {
    padding: 120px 0;
    background: var(--bg);
}

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

.approach-detail-content h2 {
    margin-bottom: 48px;
}

.approach-detail-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.approach-detail-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-dark);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.approach-detail-text h4 {
    margin-bottom: 12px;
    color: var(--gold);
}

.approach-detail-text p {
    margin: 0;
}

.approach-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

.commitment-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary), var(--bg));
}

.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    margin-bottom: 24px;
}

.commitment-content .lead {
    margin-bottom: 64px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    text-align: left;
}

.commitment-item {
    background: var(--surface);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.commitment-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.commitment-item h4 {
    margin-bottom: 12px;
    color: var(--gold);
}

.commitment-item p {
    margin: 0;
    font-size: 0.95rem;
}

.cta-section {
    padding: 120px 0;
    background: var(--bg);
}

.cta-box {
    background: linear-gradient(135deg, var(--surface), var(--secondary));
    padding: 80px 64px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.cta-box h2 {
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro {
    padding: 80px 0;
    background: var(--bg);
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    margin-bottom: 24px;
}

.services-detailed {
    padding: 80px 0;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.service-detailed:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.service-detailed.reverse > * {
    direction: ltr;
}

.service-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.service-detailed-content h2 {
    margin-bottom: 24px;
}

.service-detailed-content > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-feature:hover {
    border-color: var(--gold);
    transform: translateX(8px);
}

.service-feature i {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.service-feature h4 {
    margin-bottom: 8px;
    color: var(--gold);
}

.service-feature p {
    margin: 0;
    font-size: 0.95rem;
}

.service-detailed-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

.additional-services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg), var(--secondary));
}

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

.additional-service-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
}

.additional-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
}

.additional-service-card i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.additional-service-card h3 {
    margin-bottom: 16px;
    color: var(--gold);
}

.additional-service-card p {
    margin: 0;
    font-size: 0.95rem;
}

.process-section {
    padding: 120px 0;
    background: var(--bg);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: -48px;
    width: 2px;
    background: var(--border);
}

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

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.process-content {
    flex: 1;
    padding-top: 8px;
}

.process-content h3 {
    margin-bottom: 16px;
    color: var(--gold);
}

.process-content p {
    margin: 0;
    font-size: 1.05rem;
}

.insights-intro {
    padding: 80px 0;
    background: var(--bg);
}

.insights-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insights-intro-content h2 {
    margin-bottom: 24px;
}

.insights-grid-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, var(--bg), var(--secondary));
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.insight-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
}

.insight-card.featured {
    grid-column: span 2;
}

.insight-image {
    height: 280px;
    overflow: hidden;
}

.insight-card.featured .insight-image {
    height: 400px;
}

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

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 32px;
}

.insight-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-content h2,
.insight-content h3 {
    margin-bottom: 16px;
    color: var(--gold);
}

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

.insight-content p:last-child {
    margin-bottom: 0;
}

.topics-section {
    padding: 120px 0;
    background: var(--bg);
}

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

.topic-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
}

.topic-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-dark);
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.topic-card h3 {
    margin-bottom: 16px;
    color: var(--gold);
}

.topic-card p {
    margin: 0;
    font-size: 0.95rem;
}

.perspective-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary), var(--bg));
}

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

.perspective-content h2 {
    margin-bottom: 32px;
}

.perspective-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.contact-section {
    padding: 120px 0;
    background: var(--bg);
}

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

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info > p {
    font-size: 1.125rem;
    margin-bottom: 48px;
}

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

.contact-detail-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.contact-text h4 {
    margin-bottom: 8px;
    color: var(--gold);
}

.contact-text p {
    margin: 0;
}

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

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

.contact-note {
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    margin-bottom: 32px;
    color: var(--gold);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.thanks-section {
    padding: 160px 0 120px;
    background: var(--bg);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--text-dark);
    margin: 0 auto 40px;
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.4);
}

.thanks-content h1 {
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.thanks-contact {
    margin: 40px 0;
    padding: 32px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.thanks-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

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

.thanks-contact i {
    color: var(--gold);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.legal-page {
    padding: 140px 0 80px;
    background: var(--bg);
}

.legal-page h1 {
    margin-bottom: 16px;
}

.legal-date,
.legal-subtitle {
    font-size: 1.125rem;
    color: rgba(232, 232, 232, 0.6);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    margin-bottom: 24px;
    color: var(--gold);
}

.legal-section h3 {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.5rem;
}

.legal-section h4 {
    margin-bottom: 12px;
    color: var(--gold);
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .approach-grid,
    .cta-image-grid,
    .mission-intro-grid,
    .approach-detail-grid,
    .service-detailed,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-detailed.reverse {
        direction: ltr;
    }

    .insight-card.featured {
        grid-column: span 1;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-search {
        display: none;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .values-grid,
    .expertise-grid,
    .philosophy-grid,
    .commitment-grid,
    .additional-services-grid,
    .topics-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 48px 32px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .floating-contact {
        width: 56px;
        height: 56px;
        font-size: 20px;
        bottom: 24px;
        right: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .value-card,
    .philosophy-card,
    .additional-service-card,
    .topic-card {
        padding: 32px 24px;
    }

    .step {
        padding: 20px;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

    .process-step::before {
        left: 39px;
        top: 96px;
    }
}