/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

main {
    flex: 1 0 auto;
}

/* Professional Corporate Color Scheme */
:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --tertiary-color: #334155;
    --accent-color: #b8860b;
    --accent-light: #daa520;
    --accent-dark: #8b6914;
    --text-dark: #1a202c;
    --text-medium: #2d3748;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Notification Bar */
.top-notification {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    z-index: 1001;
    border-bottom: 2px solid var(--accent-color);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out, max-height 0.4s ease-out;
    max-height: 100px; /* for transition */
}

.top-notification.closed {
    max-height: 0;
    overflow: hidden;
    border-bottom: none;
}

.notification-link {
    display: block;
    padding: 0.6rem 0;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.notification-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.top-notification .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 0.75rem;
}

.top-notification i {
    color: var(--accent-light);
}

.close-notification {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.close-notification:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: rotate(90deg);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    color: var(--text-dark);
    padding: 1rem 0;
    position: sticky; /* Changed from fixed to sticky */
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid var(--accent-color);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-2px);
}

.nav-brand .brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-brand .brand-text p {
    font-size: 0.9rem;
    color: var(--accent-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--accent-dark);
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 80%;
}

.lang-switch {
    background: var(--gradient-accent);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    border: 2px solid transparent;
}

.lang-switch:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
    border-color: var(--accent-light);
}

.lang-switch::after {
    display: none;
}

/* Hero Section */
.hero {
    background: var(--bg-dark);
    color: white;
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Particle.js Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 1s ease-out 1.2s forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: #b8770c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    /* Soften gradient transition */
    background: linear-gradient(180deg, rgba(15,23,42,1) 0%, rgba(15,23,42,0.4) 50%, rgba(248,250,252,0) 100%);
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.service-icon {
    background: var(--gradient-accent);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    box-shadow: var(--shadow-heavy);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.service-card li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a365d;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Contact Section */
.contact {
    padding: 5rem 0 7rem; /* extra bottom padding so it never sits under footer/cookie */
    background: #f7fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    background: #e53e3e;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    /* remove z-index to avoid covering page content */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d4a6b;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999; /* Below header and modal */
}

.contact-fab {
    background: var(--gradient-accent);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-fab:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.contact-fab .tooltip {
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.contact-fab:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-contact a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states and animations */
.service-card,
.contact-form {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
    background-color: #fed7d7;
}

.form-group .error-message {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Success message */
.success-message {
    background: #c6f6d5;
    border: 1px solid #68d391;
    color: #22543d;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.error-message-form {
    background: #fed7d7;
    border: 1px solid #fc8181;
    color: #742a2a;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 6rem 0 3rem;
    background: #f7fafc;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-wrapper h1 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #e53e3e;
    padding-bottom: 1rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #e53e3e;
    padding-left: 1rem;
}

.policy-section h3 {
    color: #2d4a6b;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.policy-section h4 {
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.cookie-types {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.cookie-type {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.cookie-type h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 380px;
    background: white;
    color: var(--text-dark);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: var(--shadow-heavy);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner-text {
    width: 100%;
}

.cookie-banner-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner-text h3::before {
    content: "🍪";
    font-size: 1.2rem;
}

.cookie-banner-text p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-banner-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cookie-banner-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 6px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.cookie-banner-buttons .btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
}

.cookie-banner-buttons .btn-primary:hover {
    background: #b8770c;
    transform: none;
    box-shadow: var(--shadow-light);
}

.cookie-banner-buttons .btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-banner-buttons .btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-dark);
    transform: none;
}

.btn-minimal {
    background: transparent;
    color: var(--text-light);
    border: none;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    text-decoration: underline;
}

.btn-minimal:hover {
    color: var(--text-dark);
    background: transparent;
    transform: none;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    background: #1a365d;
    color: white;
    border-radius: 10px 10px 0 0;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-body > p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f7fafc;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.cookie-category h3 {
    margin: 0;
    color: #1a365d;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* Cookie Switch Toggle */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #e53e3e;
}

input:focus + .slider {
    box-shadow: 0 0 1px #e53e3e;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #68d391;
    cursor: not-allowed;
}

input:disabled + .slider:before {
    transform: translateX(26px);
}

.gdpr-info {
    background: #e6fffa;
    border: 1px solid #4fd1c7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.gdpr-info h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.gdpr-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.gdpr-info li {
    margin-bottom: 0.3rem;
    color: #2d4a6b;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #c6f6d5;
    border: 1px solid #68d391;
    color: #22543d;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10002;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-notification-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cookie-notification i {
    color: #38a169;
    font-size: 1.2rem;
}

/* Cookie Settings Button */
.cookie-settings-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #2d4a6b;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(45, 74, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.cookie-settings-button:hover {
    background: #1a365d;
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .cookie-banner-buttons {
        justify-content: space-between;
        width: 100%;
    }
    
    .cookie-banner-buttons .btn {
        flex: 1;
        text-align: center;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .cookie-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 5rem 0 2rem;
    }
    
    .cookie-settings-button {
        bottom: 80px;
        right: 20px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* Body classes for modal states */
body.cookie-banner-visible {
    /* No padding needed for left-positioned banner */
}

body.modal-open {
    overflow: hidden;
}

/* Sections */
.section {
    padding: 5rem 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(40px);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Restore inline contact form */

/* Notification click opens modal directly */
.notification-link { cursor: pointer; }
