/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional White Theme Color Palette */
    --color-primary: #ffffff;
    --color-secondary: #f8f9fa;
    --color-accent: #d4af37;
    --color-accent-blue: #1e40af;
    --color-accent-light: #3b82f6;
    --color-text-primary: #1a202c;
    --color-text-secondary: #4a5568;
    --color-text-muted: #718096;
    --color-bg-dark: #f7fafc;
    --color-bg-card: #ffffff;
    --color-border: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--color-accent-blue);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-menu .dropdown > a::after {
    content: '';
    display: none;
}

.nav-menu .dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.nav-menu .dropdown-arrow svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    display: block;
}

.nav-menu .dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid var(--color-border);
}

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

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    padding: 0.75rem 1.5rem;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 0;
    color: var(--color-text-primary);
    display: block;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--color-bg-dark);
    color: var(--color-accent-blue);
}

.language-switcher {
    position: relative;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    min-width: 80px;
    text-align: left;
}

.lang-btn::after {
    content: '';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-text-primary);
    transition: transform 0.3s;
}

.lang-dropdown.active .lang-btn::after {
    transform: translateY(-50%) rotate(180deg);
}

.lang-btn:hover {
    border-color: var(--color-accent-blue);
    background: var(--color-bg-dark);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 80px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    border: 1px solid var(--color-border);
    z-index: 1001;
}

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

.lang-dropdown-menu li {
    margin: 0;
}

.lang-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.lang-dropdown-menu a:hover,
.lang-dropdown-menu a.active {
    background: var(--color-bg-dark);
    color: var(--color-accent-blue);
}

/* Mobile Menu Toggle */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-primary);
    transition: color 0.3s;
}

.mobile-menu-toggle:hover {
    color: var(--color-accent-blue);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--color-bg-card);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active .mobile-sidebar-content {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-dark);
}

.mobile-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.mobile-sidebar-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-primary);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-close:hover {
    color: var(--color-accent-blue);
}

.mobile-sidebar-close svg {
    width: 24px;
    height: 24px;
}

.mobile-sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

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

.mobile-nav-menu > li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-menu > li > a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.mobile-nav-menu > li > a:hover {
    background: var(--color-bg-dark);
    color: var(--color-accent-blue);
    padding-left: 2rem;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-bg-dark);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-nav-menu .dropdown > a {
    position: relative;
    padding-right: 3rem !important;
}

.mobile-nav-menu .dropdown > a::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.mobile-nav-menu .dropdown.active > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-nav-menu .dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu .dropdown.active .dropdown-menu {
    max-height: 500px;
}

.mobile-nav-menu .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav-menu .dropdown-menu li a {
    display: block !important;
    padding: 0.875rem 2rem !important;
    color: var(--color-text-secondary) !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    transition: all 0.3s !important;
}

.mobile-nav-menu .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--color-accent-blue) !important;
    padding-left: 2.5rem !important;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s;
}

.mobile-dropdown-menu a:hover {
    background: rgba(30, 64, 175, 0.1);
    color: var(--color-accent-blue);
    padding-left: 3.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

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

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.8;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 0;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slogan {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #1a202c;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-region {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.region-badge {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

a.region-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    cursor: pointer;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

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

.trust-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.trust-content {
    padding-left: 0;
    position: relative;
}

.trust-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.trust-stats-row {
    display: flex;
    gap: 0;
    align-items: center;
}

.trust-stat-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.trust-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--color-border);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.feature-item p {
    color: var(--color-text-primary);
}

.testimonials {
    margin-top: 4rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

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

.testimonial-swiper {
    padding: 0 3rem;
    margin: 0 -3rem;
}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-blue);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--color-primary);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.section-description {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.products-swiper {
    padding: 2rem 0 4rem;
    overflow: hidden;
    margin-right: 0;
}

.products-swiper .swiper-wrapper {
    margin-right: 0;
}

.products-grid {
    display: flex;
    gap: 0;
}

.products-swiper .swiper-slide {
    width: auto;
    height: auto;
    margin-right: 0;
    transform: none !important;
}

.products-swiper .swiper-slide:hover {
    transform: none !important;
}

.product-card {
    width: 100%;
    flex-shrink: 0;
    background: var(--color-bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-right: 0;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-blue);
}

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

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
}

.product-icon svg,
.product-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-cta {
    display: inline-block;
    color: var(--color-accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.product-cta:hover {
    color: var(--color-accent-light);
    border-bottom-color: var(--color-accent-light);
}

/* Features Split Section */
.features-split-section {
    padding: 0;
    background: #1a1a1a;
    overflow: hidden;
}

.features-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.features-split-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

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

.features-split-content {
    background: #000;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    position: relative;
}

.features-split-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 100, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 100, 0, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 0;
}

.features-split-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
}

.features-badge {
    display: inline-block;
    color: #ff6b35;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.features-split-section .features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.features-split-section .features-list .feature-item {
    text-align: left;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.features-split-section .features-list .feature-item .feature-content {
    flex: 1;
}

.features-split-section .features-list .feature-item h3 {
    margin-bottom: 0.5rem;
}

.features-split-section .features-list .feature-item p {
    margin: 0;
}

.features-split-section .features-list .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    margin-bottom: 0;
}

.features-split-section .features-list .feature-icon svg {
    width: 32px;
    height: 32px;
}

.features-split-section .features-list .feature-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.features-split-section .features-list .feature-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Content Section */
.content-section {
    padding: 6rem 0;
    background: var(--color-bg-dark);
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-swiper {
    padding: 0 3rem;
    margin: 0 -3rem;
}

.content-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.content-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-image {
    height: 300px;
    background: var(--gradient-primary);
    overflow: hidden;
    position: relative;
}

.content-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-placeholder {
    font-size: 4rem;
    opacity: 0.3;
    color: #ffffff;
}

.content-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-accent-blue);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.content-title {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.4;
    font-weight: 600;
    border-bottom: none;
    text-decoration: none;
}

.content-title a {
    color: #000000;
    text-decoration: none;
    border-bottom: none;
}

.content-title a:hover {
    color: var(--color-accent-blue);
}

.content-excerpt {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-link {
    color: var(--color-accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Footer */
.footer {
    background: var(--color-bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-col {
        margin-bottom: 0.5rem;
    }
    
    .footer-heading {
        margin-bottom: 0;
        padding: 0;
        font-size: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
}

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

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

/* Footer Accordion (Mobile) */
.footer-accordion-toggle {
    position: relative;
    cursor: pointer;
    user-select: none;
    padding-right: 2rem;
}

.footer-accordion-toggle::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-col.active .footer-accordion-toggle::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
    color: var(--color-accent-blue);
}

.footer-accordion-content {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

/* Desktop: Always visible */
@media (min-width: 769px) {
    .footer-accordion-toggle {
        cursor: default;
        padding-right: 0;
    }
    
    .footer-accordion-toggle::after {
        display: none;
    }
    
    .footer-accordion-content {
        max-height: none !important;
        opacity: 1 !important;
    }
}

/* Mobile: Accordion behavior */
@media (max-width: 768px) {
    .footer-accordion-content {
        max-height: 0;
        opacity: 0;
    }
    
    .footer-col.active .footer-accordion-content {
        max-height: 500px;
        opacity: 1;
    }
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-language > span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-language li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-language a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-language .lang-link,
.lang-link {
    display: inline-block;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-language a:hover .lang-link,
.footer-language .lang-link:hover,
.lang-link:hover,
.lang-link.active {
    background: var(--color-accent-blue);
    color: var(--color-primary);
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Swiper Navigation */
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev,
.content-swiper .swiper-button-next,
.content-swiper .swiper-button-prev {
    color: var(--color-accent-blue);
    background: var(--color-bg-card);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.products-swiper .swiper-button-next:after,
.products-swiper .swiper-button-prev:after,
.testimonial-swiper .swiper-button-next:after,
.testimonial-swiper .swiper-button-prev:after,
.content-swiper .swiper-button-next:after,
.content-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.products-swiper .swiper-button-next:hover,
.products-swiper .swiper-button-prev:hover,
.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover,
.content-swiper .swiper-button-next:hover,
.content-swiper .swiper-button-prev:hover {
    background: var(--color-accent-blue);
    color: #ffffff;
}

.products-swiper .swiper-pagination,
.testimonial-swiper .swiper-pagination,
.content-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.products-swiper .swiper-pagination-bullet,
.testimonial-swiper .swiper-pagination-bullet,
.content-swiper .swiper-pagination-bullet {
    background: var(--color-accent-blue);
    opacity: 0.3;
}

.products-swiper .swiper-pagination-bullet-active,
.testimonial-swiper .swiper-pagination-bullet-active,
.content-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.chat-button svg {
    width: 28px;
    height: 28px;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--color-bg-card);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chat-header {
    background: var(--gradient-accent);
    color: var(--color-text-primary);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s;
}

.chat-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.chat-message.bot {
    align-self: flex-start;
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.chat-message.user {
    align-self: flex-end;
    background: var(--color-accent-blue);
    color: #ffffff;
}

.chat-message p {
    margin: 0;
}

.chat-input-area {
    padding: 1rem 1.5rem;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input:focus {
    border-color: var(--color-accent-blue);
}

.chat-send {
    width: 40px;
    height: 40px;
    background: var(--color-accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chat-send:hover {
    background: var(--color-accent-light);
}

.chat-send svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 60px);
        height: 450px;
        right: 0;
        bottom: 80px;
    }

    .chat-button {
        width: 56px;
        height: 56px;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

    .products-swiper .swiper-slide {
        width: 100%;
    }

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

    .features-split-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .features-split-image {
        min-height: 400px;
        order: 2;
    }

    .features-split-content {
        order: 1;
        padding: 3rem 2rem;
    }

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

    .trust-content {
        padding-left: 0;
        padding-top: 2rem;
    }

    .trust-image {
        min-height: 400px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .hero {
        padding: 6rem 0 3rem;
    }

    .service-content {
        display: block;
    }

    .service-sidebar {
        display: none;
    }

    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-wrapper {
        height: 300px;
        order: 1;
    }
    
    .contact-info-content {
        order: 0;
    }

    .contact-main-title,
    .contact-form-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .service-title {
        font-size: 2.5rem;
    }

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

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Service Detail Pages */
.service-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    color: #ffffff;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.service-hero-image {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-details {
    padding: 4rem 0;
    background: var(--color-primary);
}

.service-content {
    display: block;
    margin-top: 2rem;
    width: 100%;
}

.service-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    font-weight: 700;
}

.service-main h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.service-main p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-secondary);
    line-height: 1.8;
    border-bottom: 1px solid var(--color-border);
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.benefit-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
}

.benefit-icon svg,
.benefit-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.deliverables-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.deliverables-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-section {
    background: var(--color-bg-dark);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--color-border);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.sidebar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.quick-facts {
    list-style: none;
    padding: 0;
}

.quick-facts li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.quick-facts li:last-child {
    border-bottom: none;
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 0.8rem;
}

.related-services a {
    color: var(--color-accent-blue);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.related-services a:hover {
    color: var(--color-accent);
}

/* Blog/Article Pages */
.blog-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    color: #ffffff;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.blog-listing {
    padding: 4rem 0;
    background: var(--color-primary);
}

.blog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent-blue);
    color: #ffffff;
    border-color: var(--color-accent-blue);
}

.article-detail {
    padding: 4rem 0;
    background: var(--color-primary);
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.article-featured-image {
    max-width: 1000px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.article-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.article-content p {
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--color-text-secondary);
    line-height: 1.9;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.article-content blockquote {
    border-left: 4px solid var(--color-accent-blue);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-text-secondary);
}

/* About & Contact Pages */
.page-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
    background: var(--color-primary);
}

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

.team-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* Contact Info & Map Section */
.contact-info-section {
    padding: 6rem 0;
    background: var(--color-primary);
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-content {
    max-width: 600px;
}

.contact-badge {
    display: inline-block;
    color: var(--color-accent-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.method-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
}

.method-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.method-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.method-text p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin: 0;
}

.contact-map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map {
    width: 100%;
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-html {
    width: 100%;
    height: 100%;
}

.contact-map-html iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-form-container {
        max-width: 100%;
        padding: 0;
    }
    
    .contact-form-modern {
        padding: 15px !important;
        border-radius: 12px;
    }
    
    .contact-form-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-modern .form-row {
        grid-template-columns: 1fr !important;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .contact-form-modern .form-group-modern {
        margin-bottom: 0;
        grid-column: 1 !important;
    }
    
    .contact-form-modern .form-group-modern.full-width {
        margin-bottom: 10px;
        grid-column: 1 !important;
    }
    
    .contact-form-modern .form-actions {
        margin-top: 1rem;
        gap: 0.75rem;
    }
}

.contact-form-badge {
    display: inline-block;
    color: var(--color-accent-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.contact-form-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 3rem;
    line-height: 1.2;
    text-transform: lowercase;
}

.contact-form-modern {
    background: var(--color-bg-card);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

.form-group-modern {
    width: 100%;
}

.form-group-modern.full-width {
    grid-column: 1 / -1;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text-primary);
    background: var(--color-primary);
    transition: all 0.3s;
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-send,
.btn-reset {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: capitalize;
}

.btn-send {
    background: var(--color-accent-blue);
    color: #ffffff;
}

.btn-send:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-reset {
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
    border: 2px solid var(--color-border);
}

.btn-reset:hover {
    background: var(--color-border);
    border-color: var(--color-text-secondary);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--color-primary);
    color: var(--color-text-primary);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent-blue);
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* 404 Error Page */
.error-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: var(--color-bg-dark);
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-number {
    font-size: 10rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-404-title {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-404-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-404-search {
    margin-bottom: 2rem;
}

.error-404-search form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.error-404-search input[type="search"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    font-size: 1rem;
}

.error-404-search input[type="submit"] {
    padding: 0.875rem 2rem;
    background: var(--color-accent-blue);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.error-404-search input[type="submit"]:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.error-404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-404-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.error-404-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.error-404-links h3 {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.error-404-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-links li a {
    color: var(--color-accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.error-404-links li a:hover {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-404-number {
        font-size: 6rem;
    }

    .error-404-title {
        font-size: 1.75rem;
    }

    .error-404-description {
        font-size: 1rem;
    }

    .error-404-search form {
        flex-direction: column;
    }

    .error-404-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-404-actions .btn {
        width: 100%;
    }
}

/* Chat Typing Indicator */
.chat-message.typing p {
    opacity: 0.7;
    font-style: italic;
}

.chat-message.typing p::after {
    content: '...';
    animation: typing-dots 1.5s infinite;
}

@keyframes typing-dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}
