/* Baymineral Modern Website Styles */
:root {
    --primary-color: #00416B;
    --secondary-color: #003454;
    --accent-color: #e2e8f0;
    --text-color: var(--primary-color);
    --text-light: var(--primary-color);
    --background-color: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-600: var(--primary-color);
    --gray-800: var(--primary-color);
    --gray-900: var(--primary-color);
    --border-radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

a:hover {
    color: var(--secondary-color);
}

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

.header .container {
    padding: 0 1.5rem;
    width: 100%;
    max-width: none;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 1.5rem 0;
    transition: var(--transition);
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    pointer-events: auto;
}

/* Header on pages with page-header background */
body:has(.page-header) .header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
}

body:has(.page-header) .header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled .logo a,
.header.scrolled .nav-link,
.header.scrolled .language-select,
.header.scrolled .mobile-toggle span {
    color: var(--primary-color);
}

.header.scrolled .language-select {
    border-color: var(--gray-300);
    background: rgba(255, 255, 255, 0.8);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: #ffb72f;
}

.header.scrolled .language-select {
    border-color: var(--gray-300);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300416B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6,9 12,15 18,9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
}

.header.scrolled .mobile-toggle span {
    background-color: var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    height: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo .logo-light {
    height: 100px;
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.logo .logo-dark {
    height: 100px;
    display: block;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: opacity 1s ease-in-out;
}

.header.scrolled .logo .logo-light {
    opacity: 0;
}

.header.scrolled .logo .logo-dark {
    opacity: 1;
}

.logo img:hover {
    transform: scale(1.05);
}

.header.scrolled .logo .logo-light:hover {
    transform: none;
}

.header.scrolled .logo .logo-dark:hover {
    transform: translateY(-50%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 0.5rem 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-select {
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    color: white;
    min-width: 100px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6,9 12,15 18,9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
}

.language-select:hover,
.language-select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.language-select option {
    padding: 0.5rem;
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

/* Main Content */
.main-content {
    margin-top: 0;
    min-height: 450px;
    position: relative;
    z-index: 0;
}

/* 404 sayfası için özel main-content stili */
.error-page ~ .main-content {
    min-height: 450px;
    padding-top: 0;
}

/* 404 sayfası buton stilleri */
.error-btn.btn-primary:hover {
    background-color: #ffb72f !important;
    border-color: #ffb72f !important;
    color: white !important;
}

.error-btn.btn-outline-primary:hover {
    background-color: #ffb72f !important;
    border-color: #ffb72f !important;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
}

/* Video Background Hero */
.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color); /* Fallback */
    z-index: -1;
}

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

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    background: var(--primary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

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

.hero-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 600px;
    max-height: 450px;
    width: auto;
    height: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.hero-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

/* About Section */
.about {
    padding: 3rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.intro-text {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

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

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 550px;
    height: 15px;
    background: #ffb72f;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

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

.welcome-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.welcome-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffb72f, #f39c12);
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

.welcome-text p {
    font-size: 21px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.welcome-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.geometric-design {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.geometric-overlay,
.city-skyline {
    position: absolute;
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

.geometric-overlay {
    z-index: 2;
    width: 150%;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 1.5s ease-out;
}

.city-skyline {
    z-index: 1;
    width: 135%;
    bottom: 0;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1.5s ease-out;
}

.geometric-design.animate .geometric-overlay {
    transform: translateY(0);
    opacity: 1;
}

.geometric-design.animate .city-skyline {
    transform: translateY(0);
    opacity: 1;
}

.geometric-design:hover .geometric-overlay {
    transform: scale(1.02);
}

.geometric-design:hover .city-skyline {
    transform: scale(1.01);
}

/* Activities Section */
.activities-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.activity-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-top-color: #ffb72f;
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ffb72f, #f39c12);
}

.activity-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.activity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Global Innovations Section */
.global-innovations {
    padding: 5rem 0;
    background: white;
    overflow: hidden;
}

.innovations-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.innovations-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: visible;
}

.innovations-image {
    width: 127.5%;
    height: auto;
    position: relative;
    left: -70%;
    background: transparent;
}

.innovations-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.innovations-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffb72f, #f39c12);
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

.innovations-text p {
    font-size: 21px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.innovations-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.innovations-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 65, 107, 0.3);
}

/* Contact CTA Section */
.contact-cta {
    padding: 2rem 0;
    background: var(--primary-color);
    text-align: center;
}

.contact-cta-link {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.contact-cta-link h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.contact-cta-link:hover h3 {
    color: #ffb72f;
    transform: translateY(-2px);
}

/* About Middle Section */
.about-middle {
    padding: 5rem 0;
    background: white;
}

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

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

.about-middle-image {
    width: 75%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-middle-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Blog Section */
.blog {
    padding: 4rem 0;
}

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

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background-color: var(--gray-200);
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

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

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 2rem;
    text-align: left;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 2rem;
    text-align: left;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 6px 10px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-bottom: none;
}

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

.contact-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-icon:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 14px;
    height: 14px;
}

.contact-details h4 {
    margin-bottom: 0.0625rem;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Simple Contact Info Styles */
.contact-info-simple {
    margin-bottom: 1.5rem;
}

.contact-item-simple {
    margin-bottom: 1.5rem;
}

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

.contact-item-simple h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item-simple p {
    margin: 0;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item-simple a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-simple a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--gray-100);
    color: var(--text-color);
    padding: 3rem 0 1rem;
}

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

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.footer-section a {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

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

.social-media {
    display: flex;
    gap: 0.25rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    color: #ffb72f;
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-300);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navbar {
        justify-content: space-between;
    }
    
    .logo {
        position: static;
        transform: none;
    }
    
    .navbar-right {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        min-width: 200px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
        z-index: 1002;
        border-radius: var(--border-radius);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
        color: var(--primary-color);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #ffb72f;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .about-content,
    .contact-content,
    .welcome-content,
    .activities-grid,
    .innovations-content,
    .about-middle-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .innovations-visual {
        order: -1;
    }
    
    .innovations-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .contact-cta-link h3 {
        font-size: 1.5rem;
    }
    
    .welcome-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .welcome-visual {
        order: -1;
    }
    
    .geometric-design {
        max-width: 400px;
        height: 300px;
    }
    
    .features-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .language-select {
        min-width: 70px;
        font-size: 0.75rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo .logo-light {
        height: 100px;
    }
    
    .logo .logo-dark {
        height: 100px;
    }
    
    .header .container {
        padding: 0 1rem;
    }
    
    .hero-logo {
        max-width: 420px;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-video {
        min-height: 70vh;
    }
    
    .video-background video {
        object-position: center center;
        /* Mobile video optimizations */
        transform: scale(1.1);
        filter: brightness(0.8);
    }
    
    .features,
    .about,
    .services,
    .blog,
    .contact {
        padding: 2rem 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .hero-logo {
        max-width: 330px;
        max-height: 225px;
    }
    
    .welcome-section {
        padding: 3rem 0;
    }
    
    .welcome-text h2 {
        font-size: 24px;
    }
    
    .welcome-text p {
        font-size: 18px;
    }
    
    .innovations-text h2 {
        font-size: 24px;
    }
    
    .innovations-text p {
        font-size: 18px;
    }
    
    .contact-cta-link h3 {
        font-size: 1.25rem;
    }
    
    .geometric-design {
        max-width: 300px;
        height: 250px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation */
.form-control.error {
    border-color: #e53e3e;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.general-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}

.success-message {
    color: #38a169;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--gray-100);
    padding: 1rem 0;
    margin-top: 90px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-item {
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--gray-400);
}

.breadcrumb-link {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

/* Page Header Styles */
.page-header {
    background: url('/assets/images/header-about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 0;
    padding-top: calc(14rem - 25px);
    text-align: left;
    position: relative;
    min-height: calc(50vh - 100px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Products Page Header */
.page-header.products-header {
    background: url('/assets/images/header-products.jpg');
}

/* Services Page Header */
.page-header.services-header {
    background: url('/assets/images/header-services.jpg');
}

/* Blog Page Header */
.page-header.blog-header {
    background: url('/assets/images/header-blog.jpg');
}

/* Contact Page Header */
.page-header.contact-header {
    background: url('/assets/images/header-contact.jpg');
}



.page-header h1 {
    font-size: 40px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 0;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-content {
    padding: 4rem 0;
    background: white;
}

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

.cookie-policy-content {
    line-height: 1.8;
}

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

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

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

.policy-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-color);
}

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

.policy-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.browser-instructions {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.browser-instructions h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-details {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

.contact-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-footer {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.policy-footer p {
    margin: 0;
    font-weight: 600;
}

/* Responsive Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 3rem;
        padding-top: calc(12rem - 20px);
        min-height: calc(40vh - 80px);
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .page-description {
        font-size: 1.125rem;
    }
    
    .page-content {
        padding: 3rem 0;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.125rem;
    }
    
    .browser-instructions,
    .contact-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0 2rem;
        padding-top: calc(11rem - 15px);
        min-height: calc(35vh - 60px);
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
    
    .browser-instructions,
    .contact-details {
        padding: 1rem;
    }
}

/* Contact Map Styles */
.contact-map {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

.map-info {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.map-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Inline Map Styles for Contact Info Section */
.contact-map-inline {
    margin-top: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-map-inline h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.map-container-inline {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 280px;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.map-container-inline:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.map-container-inline iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

.map-info-inline {
    text-align: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.map-info-inline p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .contact-map {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .contact-map h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-info {
        padding: 1rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
    
    .contact-map-inline {
        margin-top: 1.5rem;
    }
    
    .map-container-inline {
        height: 250px;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .contact-map {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .contact-map h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .map-container {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .map-info {
        padding: 0.75rem;
    }
    
    .contact-map-inline {
        margin-top: 1rem;
    }
    
    .map-container-inline {
        height: 200px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .map-info-inline {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Product grid for Products page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.product-card .about-image {
    margin-bottom: 1.5rem;
}

.product-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-card p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    color: var(--text-color);
}

.product-intro-text {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

/* Service Title Hover Effects */
.services-header a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.services-header a:hover {
    color: #ffb72f !important;
}

/* Other Services Hover Effects */
.about a[style*="background: white"] {
    transition: all 0.3s ease !important;
}

.about a[style*="background: white"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    color: #ffb72f !important;
}

/* Other Services Grid Responsive */
@media (max-width: 768px) {
    .about div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .about div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: rgba(255,255,255,0.6);
    content: ">";
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

/* Blog Post Content Styles */
.post-content ul,
.post-content ol {
    margin: 1rem 0;
    padding-left: 0;
    list-style-position: outside;
}

.post-content ul {
    list-style-type: disc;
    padding-left: 1.25rem;
}

.post-content ol {
    list-style-type: decimal;
    padding-left: 1.25rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.post-content li::marker {
    color: var(--primary-color);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin: 1.5rem 0 1rem 0;
    color: var(--primary-color);
}

.post-content p {
    margin: 1rem 0;
    line-height: 1.8;
    color: var(--text-color);
}

/* Product and Service title links */
.product-title-link,
.service-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.product-title-link:hover,
.service-title-link:hover {
    color: #ffb72f;
} 
