/* Alanya TEKMER Main Stylesheet - Modern Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #1e293b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.2s ease;
}

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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* FLOATING ACTION BUTTONS - Right Bottom */
.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.fab-btn:hover::before {
    transform: scale(1);
}

.fab-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.fab-phone {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.fab-phone:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Mobile FAB adjustments */
@media (max-width: 768px) {
    .floating-action-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* TOP HEADER */
.top-header {
    background: #151E30;
    color: white;
    padding: 8px 0;
    font-size: 12px;
    transition: all 0.3s ease;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.contact-item:hover {
    color: #fff;
    transform: translateY(-1px);
}

.contact-item i {
    font-size: 14px;
    color: #D4AF37;
}

.top-header .social-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.top-header .social-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    flex-grow: 0;
    text-decoration: none;
}

.top-header .social-link:hover {
    background: #D4AF37;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* MAIN HEADER */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

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

.logo-wrapper {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateX(5px);
}

.logo-img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.main-header.scrolled .logo-img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0052cc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.2);
}

.btn-cta {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    background: linear-gradient(135deg, #1976D2 0%, #1e293b 100%);
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    color: white !important;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    margin-top: 10px;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a i {
    font-size: 16px;
    color: var(--primary);
    width: 20px;
}

.dropdown-menu a:hover {
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.mobile-menu-header {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* HERO SECTION - SPLIT LAYOUT */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.03) 0%,
            rgba(59, 130, 246, 0.05) 100%);
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
    color: var(--dark);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px -15px rgba(37, 99, 235, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 35px 100px -20px rgba(37, 99, 235, 0.4);
}

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.1) 0%,
            rgba(30, 64, 175, 0.15) 100%);
    pointer-events: none;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: 3.5em;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 25px 0;
    color: var(--dark);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.25em;
    line-height: 1.8;
    margin: 0 0 35px 0;
    color: var(--gray-600);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-hero-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--gray-200);
}

.btn-hero-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* STATS SECTION - MODERN 3 COLUMN */
.stats-section {
    background: white;
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.03) 0%,
            rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px -15px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.1);
}

.stat-icon {
    font-size: 3.5em;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-number {
    font-size: 4em;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.2em;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* SECTIONS */
.services-section,
.events-section {
    padding: 100px 0;
    background: white;
}

.events-section {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 15px 0;
}

.section-description {
    font-size: 1.2em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-light);
}

.service-icon {
    font-size: 3.5em;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 15px;
}

/* EVENTS */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px -20px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-light);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 12px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.event-date-badge .day {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.event-content {
    padding: 30px;
}

.event-type {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.event-excerpt {
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.event-meta i {
    color: var(--primary);
}

/* CTA SECTION */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary) 50%,
            var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveBackground 30s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3em;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.3em;
    margin: 0 0 40px 0;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 60px;
    background: white;
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-cta-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

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

.btn-cta-white:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-cta-white i,
.btn-cta-white span {
    position: relative;
    z-index: 1;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5em;
    font-weight: 900;
    margin: 0 0 15px 0;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.3em;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

/* CONTENT CARDS */
.about-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 50px -10px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.card-icon i {
    font-size: 2.5em;
    color: white;
}

.card-title {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 25px 0;
}

.card-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.card-content strong {
    color: var(--primary);
}

.highlight-text {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-weight: 500;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: var(--gray-50);
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.feature-item i {
    font-size: 2em;
    color: var(--primary);
}

.feature-item span {
    font-weight: 600;
    color: var(--dark);
}

/* FAQ ACCORDION */
.faq-section {
    margin-top: 40px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px 30px;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin: 10px 0;
    line-height: 1.7;
    color: var(--gray-700);
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA CARD */
.cta-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: white;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px -15px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveBackground 20s linear infinite;
}

.cta-card h2 {
    font-size: 2.5em;
    font-weight: 800;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.2em;
    margin: 0 0 35px 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-card .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-card .btn:hover {
    background: var(--gray-50);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.social-links-footer {
    display: flex;
    gap: 15px;
}

.social-links-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    color: white;
    transition: background 0.3s;
}

.social-links-footer a:hover {
    background: var(--primary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

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

.footer-contact li {
    margin: 10px 0;
    display: flex;
    align-items: start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

/* COOKIE CONSENT - MODERN WHITE THEME */
.cookie-consent-modern {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
    z-index: 10000;
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #b45309;
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.15);
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.cookie-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

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

.btn-cookie-preferences,
.btn-cookie-accept {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cookie-preferences {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-cookie-preferences:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-cookie-accept:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cookie-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlide {
    from {
        transform: scale(0.95) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-modal-header h3 i {
    color: #2563eb;
}

.cookie-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.cookie-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: 400px;
}

.cookie-modal-intro {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.cookie-category {
    margin-bottom: 16px;
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-category-info>i {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.cookie-category-info h5 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.cookie-category-info p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cookie-toggle input:checked+.cookie-toggle-slider {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cookie-toggle input:checked+.cookie-toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background: #9ca3af;
    cursor: not-allowed;
}

.cookie-toggle.disabled input:checked+.cookie-toggle-slider {
    background: #9ca3af;
}

/* Modal Footer */
.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f9fafb;
}

.btn-cookie-reject,
.btn-cookie-save {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reject {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-cookie-reject:hover {
    background: #f3f4f6;
}

.btn-cookie-save {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-cookie-save:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-modern {
        padding: 16px;
    }

    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-preferences,
    .btn-cookie-accept {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .cookie-modal {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .cookie-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .btn-cookie-reject,
    .btn-cookie-save {
        width: 100%;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav-menu {
        gap: 3px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .logo-img {
        height: 55px;
    }

    .logo-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    .main-header {
        padding: 15px 0;
    }

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

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        max-width: 85%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        align-items: stretch;
        z-index: 1001;
    }

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

    .mobile-overlay.active {
        display: block !important;
        opacity: 1;
        z-index: 1000;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 18px 25px;
        border-radius: 0;
        font-size: 15px;
    }

    .nav-link i:first-child {
        width: 25px;
    }

    .nav-link:hover {
        transform: none;
        background: rgba(33, 150, 243, 0.05);
    }

    /* Dropdown menu on mobile */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
        border-radius: 0;
        display: block !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 8px 0;
    }

    .dropdown-menu a {
        padding: 14px 25px 14px 50px;
        background: transparent;
        transition: all 0.3s ease;
        display: flex !important;
    }

    .dropdown-menu a:hover {
        background: rgba(33, 150, 243, 0.1);
        padding-left: 55px;
    }

    .dropdown-toggle {
        position: relative;
        justify-content: space-between;
        width: 100%;
        display: flex !important;
    }

    .dropdown-icon {
        position: absolute;
        right: 25px;
        transition: transform 0.3s ease;
        font-size: 12px;
        pointer-events: none;
    }

    /* Force icon rotation */
    .dropdown.active .dropdown-toggle .dropdown-icon {
        transform: rotate(180deg) !important;
    }

    .btn-cta {
        margin: 10px 20px;
        justify-content: center;
        padding: 15px 25px;
        border-radius: 8px;
    }

    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image-wrapper {
        transform: none !important;
        border-radius: 16px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-image-wrapper:hover {
        transform: none !important;
    }

    .hero-image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 2.2em;
    }

    .hero-description {
        font-size: 1.1em;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        min-width: 0;
        max-width: none;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .scroll-indicator {
        display: none;
    }

    .stats-section {
        margin-top: -40px;
        padding: 0 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .stat-item {
        padding: 40px 25px;
        border-radius: 16px;
    }

    .stat-icon {
        font-size: 3em;
    }

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

    .stat-label {
        font-size: 1em;
    }

    .services-section,
    .events-section,
    .cta-section {
        padding: 60px 0;
    }

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

    .section-description {
        font-size: 1em;
    }

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

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-title {
        font-size: 2em;
    }

    .cta-description {
        font-size: 1.1em;
    }

    .btn-cta-white {
        padding: 18px 35px;
        font-size: 16px;
    }

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

    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8em;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--gray-100);
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 48px;
}

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.gallery-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Video Gallery Items */
.gallery-video .gallery-image {
    height: 300px;
}

.gallery-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.video-badge i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-video:hover .video-badge i {
    transform: scale(1.2);
    color: var(--primary);
}

/* Gallery Modal (for lightbox - optional) */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-modal-close:hover {
    transform: scale(1.2);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-image {
        height: 180px;
    }

    .gallery-content {
        padding: 15px;
    }

    .gallery-content h3 {
        font-size: 1rem;
    }

    .gallery-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 250px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ======================================== */

/* Tablet and Below (992px) */
@media (max-width: 992px) {

    /* Container padding adjustment */
    .container {
        padding: 0 20px;
    }

    /* Page header adjustments */
    .page-header {
        padding: 80px 0 60px;
    }

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

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

    /* Section padding */
    section {
        padding: 60px 0;
    }

    /* Grid adjustments */
    .features-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Cards */
    .card,
    .content-card {
        padding: 30px 20px;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Landscape and Below (768px) */
@media (max-width: 768px) {

    /* Header adjustments */
    .top-header {
        display: none;
        /* Hide top header on mobile */
    }

    .main-header {
        padding: 15px 0;
    }

    /* Logo on mobile - show title only */
    .logo-text {
        display: flex !important;
    }

    .logo-subtitle.desktop-only {
        display: none;
    }

    .logo-title {
        font-size: 16px;
    }

    .logo-img {
        height: 40px;
    }

    /* Mobile menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        padding: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1002;
        overflow-y: auto;
    }

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

    /* Mobile Menu Header - Show on mobile only */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid var(--gray-100);
        background: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }



    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-logo img {
        height: 32px;
        width: auto;
    }

    .mobile-menu-logo span {
        font-weight: 700;
        font-size: 1rem;
        color: var(--dark);
    }

    .mobile-menu-close {
        background: var(--gray-50);
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-500);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: var(--gray-100);
        color: var(--danger);
        transform: rotate(90deg);
    }

    /* Navigation Items Container */
    .nav-menu>li {
        padding: 0 20px;
    }

    .nav-menu>li:first-of-type {
        margin-top: 20px;
    }

    /* Navigation Items Animation */
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu.active .nav-item {
        animation: slideInRight 0.4s ease forwards;
        opacity: 0;
    }

    .nav-menu.active .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-menu.active .nav-item:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-menu.active .nav-item:nth-child(6) {
        animation-delay: 0.35s;
    }

    .nav-menu.active .nav-item:nth-child(7) {
        animation-delay: 0.4s;
    }

    /* Navigation Items Styling */
    .nav-item {
        width: 100%;
        display: block;
        margin-bottom: 8px;
        border-bottom: 1px solid transparent;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 16px;
        border-radius: 12px;
        color: var(--gray-700) !important;
        display: flex !important;
        align-items: center;
        background: transparent;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    .nav-link i:first-child {
        width: 24px;
        color: var(--primary);
        margin-right: 12px;
        font-size: 1.1rem;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

    .nav-link span {
        flex-grow: 1;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--gray-50);
        color: var(--primary) !important;
    }

    .nav-link:hover i:first-child,
    .nav-link.active i:first-child {
        opacity: 1;
    }

    /* Dropdown Styling */
    .dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        min-width: auto;
        border-left: 2px solid var(--gray-200);
        margin-left: 28px;
        /* Align with icon */
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 5px;
        margin-bottom: 15px;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        padding: 12px 16px;
        font-size: 0.95rem;
        color: var(--gray-600);
        display: flex;
        align-items: center;
        border-radius: 8px;
    }

    .dropdown-menu a:hover {
        color: var(--primary);
        background: rgba(37, 99, 235, 0.08);
    }

    .dropdown-icon {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
        color: var(--primary);
    }

    /* CTA Button in Menu */
    .nav-item.cta-item {
        margin-top: 30px;
        padding-bottom: 40px;
    }

    .nav-link.btn-cta {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white !important;
        justify-content: center;
        padding: 18px;
        box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .nav-link.btn-cta i {
        color: white;
        opacity: 1;
    }

    .nav-link.btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
    }

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

    /* Page header */
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .legal-icon {
        font-size: 48px;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Section padding */
    section {
        padding: 50px 0;
    }

    /* Grid layouts - single column */
    .features-grid,
    .services-grid,
    .team-grid,
    .stats-grid,
    .rights-grid,
    .responsibility-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Cards */
    .card,
    .content-card,
    .legal-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .card-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .card-body {
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Intro cards */
    .legal-intro-card {
        padding: 30px 20px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

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

    /* Tables */
    .table-responsive {
        overflow-x: auto;
    }

    table {
        font-size: 0.85rem;
    }

    /* Forms */
    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    /* Hero sections */
    .hero-section {
        padding: 60px 0;
    }

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

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

    /* Stats */
    .stat-card {
        padding: 20px;
    }

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

    /* Events/Companies cards */
    .event-card,
    .company-card {
        flex-direction: column;
    }

    .event-image,
    .company-logo {
        width: 100%;
        height: 200px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.85rem;
    }

    /* Contact info grid */
    .contact-info-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    /* IP grid and security grid */
    .ip-grid,
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Info boxes */
    .info-box,
    .terms-box,
    .warning-box,
    .update-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .agreement-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    /* FAQ */
    .faq-accordion {
        padding: 0;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .faq-question {
        padding: 18px 15px;
        gap: 10px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.4;
        padding-right: 10px;
    }

    .faq-question i {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 15px;
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 18px 15px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .faq-answer ul {
        padding-left: 18px;
        margin: 12px 0;
    }

    .faq-answer li {
        margin: 8px 0;
        font-size: 0.9rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }
}

/* Mobile Portrait (576px and below) */
@media (max-width: 576px) {

    /* Extra small adjustments */
    .container {
        padding: 0 15px;
    }

    /* Page header */
    .page-header {
        padding: 50px 0 30px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .legal-icon {
        font-size: 36px;
    }

    /* Section padding */
    section {
        padding: 40px 0;
    }

    /* Typography */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    /* Cards */
    .card,
    .content-card,
    .legal-card {
        padding: 20px 15px;
    }

    .card-header {
        padding: 15px;
    }

    .card-body {
        padding: 15px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Intro cards */
    .legal-intro-card {
        padding: 25px 15px;
    }

    .intro-icon {
        font-size: 36px;
    }

    /* Buttons */
    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* Feature items */
    .feature-item,
    .right-item,
    .responsibility-item {
        padding: 15px;
    }

    /* All grids to single column */
    .rights-grid,
    .responsibility-grid,
    .service-grid,
    .ip-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Team cards */
    .team-card {
        padding: 15px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    /* Tables - stack on very small screens */
    .table thead {
        display: none;
    }

    .table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        padding: 10px;
    }

    .table td {
        display: block;
        text-align: right;
        padding: 8px;
        border: none;
    }

    .table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--gray-700);
    }

    /* Reduce icon sizes */
    .fas,
    .fab {
        font-size: inherit;
    }

    /* Contact link spacing */
    .contact-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Social links */
    .social-links {
        gap: 10px;
    }

    .social-links .social-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 14px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.8rem;
    }

    /* Last updated */
    .last-updated {
        font-size: 0.8rem;
        padding: 15px;
    }

    /* Info banner */
    .info-banner {
        padding: 20px 15px;
        font-size: 0.85rem;
    }

    /* Modal adjustments */
    .modal-content {
        width: 100%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {

    /* Minimal spacing for very small devices */
    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .card,
    .content-card {
        padding: 15px 12px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Increase touch targets */
    a,
    button,
    .btn,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove hover effects on touch devices */
    .card:hover,
    .feature-item:hover,
    .service-item:hover {
        transform: none;
    }

    /* Make sure dropdowns work on touch */
    .dropdown:active .dropdown-menu {
        display: block;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .page-header {
        padding: 40px 0 30px;
    }

    .hero-section {
        padding: 40px 0;
    }

    section {
        padding: 40px 0;
    }
}

/* Print styles */
@media print {

    .top-header,
    .main-header,
    .mobile-menu-toggle,
    .footer,
    .btn,
    button {
        display: none;
    }

    .page-header {
        background: none;
        color: black;
        padding: 20px 0;
    }

    .container {
        max-width: 100%;
    }

    a {
        text-decoration: underline;
    }
}