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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.nav {
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo img{
    height: 35px;
}

.logo-text {
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-button {
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.4);
}

.hero {
    background: linear-gradient(135deg, #1a252f 0%, #2d1b3d 100%);
    color: white;
    padding: 160px 20px 100px;
    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: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,180,216,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: float 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: left;
    animation: slideInLeft 0.8s ease;
}

.hero-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-img-en,
.hero-img-es {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    line-height: 1.6;
}

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

.price-tag {
    display: inline-block;
    background: rgba(0, 180, 216, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid rgba(0, 180, 216, 0.4);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
    animation: fadeInUp 0.8s ease 0.6s backwards;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #00b4d8;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

.conversion-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 100%);
    padding: 80px 20px;
}

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

.conversion-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.conversion-item .number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conversion-item h4 {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #1a1a1a;
}

.quote-section {
    background: #1a252f;
    background-image: url('assets/back-form-websites.webp');
    background-size: contain;
    background-position: center;
    background-size: 39%;
    background-repeat: repeat;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 100px 20px;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 37, 47, 0.7);
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-row .form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00b4d8;
    background: rgba(255, 255, 255, 0.1);
}

.form-group select option {
    background: #1a252f;
    color: white;
}

.submit-button {
    width: 100%;
    padding: 18px;
    margin-top:30px;
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

.ai-leads-section {
    padding: 80px 20px;
    background: white;
}

.ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 60px auto 0;
    align-items: center;
}

.ai-visual {
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-visual::before {
    content: '\f544';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    right: -50px;
    top: -50px;
}

.ai-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.ai-list {
    list-style: none;
}

.ai-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

.ai-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00b4d8;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .hero-image {
        height: 300px;
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ai-features {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 30px 20px;
    }
}

.crm-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.delivery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 20px;
}

.ai-agent-section {
    background: linear-gradient(135deg, #1a252f 0%, #2d1b3d 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.ai-agent-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="agent-grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(168,85,247,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23agent-grid)"/></svg>');
    animation: float 20s linear infinite;
}

.ai-agent-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-agent-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.ai-agent-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ai-agent-features {
    list-style: none;
}

.ai-agent-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    opacity: 0.9;
}

.ai-agent-features li::before {
    content: '\f544';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #a855f7;
    font-size: 1.2rem;
}

.ai-agent-demo {
    background: rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.chat-demo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    position: relative;
}

.chat-message.user {
    background: rgba(0, 180, 216, 0.2);
    margin-left: 20px;
}

.chat-message.agent {
    background: rgba(168, 85, 247, 0.2);
    margin-right: 20px;
}

.chat-message .sender {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.agent-cta {
    background: linear-gradient(135deg, #a855f7 0%, #00b4d8 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.agent-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
    .ai-agent-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-agent-text h2 {
        font-size: 2rem;
    }
}

.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.delivery-option {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.delivery-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #00b4d8;
}

.delivery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    color: white;
}

.delivery-option h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.delivery-option p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.delivery-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.delivery-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.delivery-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00b4d8;
    font-size: 1rem;
}

.delivery-button {
    display: inline-block;
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.delivery-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

.delivery-button.secondary {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.delivery-button.active {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.6);
}

.delivery-button.active::after {
    content: ' ✓';
    color: white;
}

.delivery-button.secondary.active {
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
}

@media (max-width: 768px) {
    .delivery-options {
        grid-template-columns: 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #00b4d8;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
}

.price-estimate {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.price-estimate h4 {
    color: #00b4d8;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.estimated-price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agent-cta.active {
    background: linear-gradient(135deg, #00b4d8 0%, #a855f7 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.6);
}

.agent-cta.active::after {
    content: ' ✓';
    color: white;
}

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

@media (max-width: 470px) {
    .nav-content{
        flex-direction: column;
        gap: 15px;
    }
}

/* Language Toggle Styles */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn.active {
    background: white;
    color: #1e293b;
    opacity: 1;
}

/* Update nav-content for flexbox */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 15px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .language-toggle {
        padding: 3px;
    }
}

/* CRM Integration Styles */
.crm-integration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.crm-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.crm-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.crm-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.crm-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 12px;
}

.ai-crm-icon, .other-crm-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ai-crm-icon {
    background: linear-gradient(135deg, #a855f7 0%, #00b4d8 100%);
}

.other-crm-icon {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.ai-crm-icon i, .other-crm-icon i {
    font-size: 20px;
    color: white;
}

.crm-logo span {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.crm-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.crm-benefit {
    text-align: center;
    padding: 25px;
}

.crm-benefit i {
    font-size: 2.5rem;
    color: #a855f7;
    margin-bottom: 20px;
}

.crm-benefit h4 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.crm-benefit p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .crm-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .crm-integration-section {
        padding: 60px 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .crm-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer Styles */
.footer {
    background: #0a1015;
    color: white;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left p {
    margin: 0;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.footer-link:hover {
    color: #00b4d8;
}

/* Consent Checkbox */
.consent-checkbox {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 180, 216, 0.5);
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input:checked + .checkmark {
    background: #00b4d8;
    border-color: #00b4d8;
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.consent-text {
    color: rgba(255, 255, 255, 0.9);
}

.consent-text a {
    color: #00b4d8;
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid rgba(0, 180, 216, 0.3);
    animation: slideUp 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h4 {
    margin: 0 0 10px 0;
    color: #00b4d8;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-link {
    color: #00b4d8;
    text-decoration: none;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #00b4d8;
    color: white;
}

.cookie-btn.accept:hover {
    background: #0096b8;
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: #1a252f;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.cookie-modal-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: white;
}

.cookie-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-category h4 {
    margin: 0 0 5px 0;
    color: white;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: #00b4d8;
}

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

.cookie-switch input:disabled + .cookie-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 15px 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookie-btn.save {
    background: #00b4d8;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .consent-checkbox {
        padding: 15px;
    }
    
    .checkbox-container {
        font-size: 0.85rem;
    }
}