/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 5rem); }
h2 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
h4 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h5 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h6 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);
    color: white;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: scale(1.1);
}

/* Cookies Modal */
.cookies-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookies-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookies-content {
    background: white;
    padding: 32px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cookies-text h3 {
    color: #1e293b;
    margin-bottom: 16px;
}

.cookies-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-left .company-logo {
    display: flex;
    align-items: center;

    img {
        width: 40px;
        margin-right: 20px;
    }

    p {
        margin-bottom: 0px;
        font-weight: 600;
        font-size: 22px;
    }
}

.nav-center .nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #3b82f6;
    transition: all 0.3s ease;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    padding: 120px 0 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.breadcrumb-nav a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #1d4ed8;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.current-page {
    color: #64748b;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    border-radius: 50%;
    animation-delay: 4s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #f59e0b, #ef4444);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 8s;
}

.shape-4 {
    top: 30%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 12s;
}

.shape-5 {
    bottom: 40%;
    left: 60%;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    border-radius: 8px;
    animation-delay: 16s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-title {
    color: #0f172a;
    margin-bottom: 24px;
    animation: titleReveal 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.8s both;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-visual-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    animation: overlayReveal 1s ease-out 1s both;
}

.overlay-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.overlay-icon img {
    width: 40px;
    height: 40px;
}

.overlay-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #0f172a;
}

.overlay-text p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-title {
    color: #0f172a;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Overview Section */
.company-overview-section {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.overview-text {
    display: grid;
    gap: 32px;
}

.overview-item h3 {
    color: #0f172a;
    margin-bottom: 16px;
}

.overview-item p {
    color: #475569;
    margin-bottom: 16px;
}

.overview-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Company History Section */
.company-history-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.company-history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233b82f6' fill-opacity='0.02'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.history-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
}

.timeline-year {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 32px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.timeline-content h3 {
    color: #0f172a;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #475569;
    margin-bottom: 16px;
}

.milestone-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.milestone-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Organizational Structure Section */
.org-structure-section {
    padding: 80px 0;
    background: white;
}

.org-chart {
    max-width: 1000px;
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.org-level:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
}

.org-position {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.org-position:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.org-position.ceo {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.org-position.ceo h3,
.org-position.ceo p {
    color: white;
}

.position-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.position-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.org-position h3 {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.org-position p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* Business Scope Section */
.business-scope-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.business-scope-section .section-title {
    color: white;
}

.business-scope-section .section-subtitle {
    color: #cbd5e1;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.scope-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scope-category:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scope-category h3 {
    color: white;
    margin-bottom: 16px;
}

.scope-category p {
    color: #cbd5e1;
    margin-bottom: 24px;
}

.scope-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Global Presence Section */
.global-presence-section {
    padding: 80px 0;
    background: white;
}

.presence-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.presence-map img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.presence-stats {
    display: grid;
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-content {
    text-align: center;
}

.stat-number {
    display: block;
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-text p {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 64px 0 32px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.company-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    img{
        width: 40px;
        margin-right: 20px;
    }
    p{
        margin-bottom: 0;
        font-style: 22px;
        font-weight: 600;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.1; }
    25% { transform: translateY(-20px) rotate(90deg) scale(1.1); opacity: 0.15; }
    50% { transform: translateY(-10px) rotate(180deg) scale(0.9); opacity: 0.2; }
    75% { transform: translateY(-30px) rotate(270deg) scale(1.05); opacity: 0.15; }
}

@keyframes titleReveal {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes overlayReveal {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .geometric-shapes {
        display: none;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 24px;
    }
    
    .org-level {
        flex-direction: column;
        gap: 24px;
    }
    
    .scope-grid {
        grid-template-columns: 1fr;
    }
    
    .presence-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .breadcrumb-item {
        font-size: 0.9rem;
    }
    
    .breadcrumb-separator {
        display: none;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .presence-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookies Modal */
#cookiesModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 10000;
    animation: modalFadeIn 0.4s ease-out;
}

.cookies-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    animation: contentSlideUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
    border: none;
}

.cookies-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px 20px;
    position: relative;
    overflow: hidden;
}

.cookies-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cookies-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.cookies-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cookies-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.cookies-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.cookies-body {
    padding: 25px 30px 30px;
}

.cookies-body p {
    color: #64748b;
    margin: 0 0 25px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookies-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookies-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    flex: 1;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.cookies-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cookies-btn:hover::before {
    left: 100%;
}

.cookies-btn.accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cookies-btn.accept:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cookies-btn.decline {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookies-btn.decline:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

@keyframes contentSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    33% { 
        transform: translateY(-10px) rotate(120deg);
    }
    66% { 
        transform: translateY(-5px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .cookies-content {
        bottom: 20px;
        margin: 0 20px;
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .cookies-header {
        padding: 20px 25px 15px;
    }
    
    .cookies-header h3 {
        font-size: 1.3rem;
    }
    
    .cookies-body {
        padding: 20px 25px 25px;
    }
    
    .cookies-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookies-btn {
        flex: none;
        width: 100%;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .cookies-content {
        bottom: 15px;
        margin: 0 15px;
        width: calc(100% - 30px);
    }
    
    .cookies-header {
        padding: 18px 20px 12px;
    }
    
    .cookies-header h3 {
        font-size: 1.2rem;
    }
    
    .cookies-body {
        padding: 18px 20px 20px;
    }
    
    .cookies-body p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}
