/* ================================
   Global Styles & Variables
   ================================ */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Material Icons Fallback */
.material-icons,
.material-symbols-outlined {
    font-family: 'Material Icons', 'Material Symbols Outlined', 'Material Icons Outlined', 'Segoe UI Symbol', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-display: swap;
}

/* Ensure icons are visible even if font fails to load */
.material-icons:before,
.material-symbols-outlined:before {
    content: attr(data-fallback);
    font-family: 'Segoe UI Symbol', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    font-size: inherit;
}

/* Force icon visibility */
.material-icons:empty:before,
.material-symbols-outlined:empty:before {
    content: "◯";
    opacity: 0.5;
}

/* Fallback styles when Material Icons fail to load */
.material-icons-fallback .material-symbols-outlined {
    font-family: 'Segoe UI Symbol', 'Segoe UI Emoji', 'Noto Color Emoji', Arial, sans-serif !important;
}

/* Specific fallback content for common icons */
.material-icons-fallback .material-symbols-outlined[data-icon="chat"]:before { content: "💬"; }
.material-icons-fallback .material-symbols-outlined[data-icon="calendar_month"]:before { content: "📅"; }
.material-icons-fallback .material-symbols-outlined[data-icon="notifications_active"]:before { content: "🔔"; }
.material-icons-fallback .material-symbols-outlined[data-icon="group"]:before { content: "👥"; }
.material-icons-fallback .material-symbols-outlined[data-icon="analytics"]:before { content: "📊"; }
.material-icons-fallback .material-symbols-outlined[data-icon="lock"]:before { content: "🔒"; }
.material-icons-fallback .material-symbols-outlined[data-icon="bolt"]:before { content: "⚡"; }
.material-icons-fallback .material-symbols-outlined[data-icon="savings"]:before { content: "💰"; }
.material-icons-fallback .material-symbols-outlined[data-icon="schedule"]:before { content: "⏰"; }
.material-icons-fallback .material-symbols-outlined[data-icon="groups"]:before { content: "👥"; }
.material-icons-fallback .material-symbols-outlined[data-icon="phone_android"]:before { content: "📱"; }
.material-icons-fallback .material-symbols-outlined[data-icon="mail"]:before { content: "✉️"; }

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

section {
    padding: 80px 0;
}

/* ================================
   Typography
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

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

.gradient-text {
    color: #ffffff;
    font-weight: 800;
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

/* ================================
   Navigation
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.demo-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
    }

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

    .hamburger {
        display: flex;
    }
}

/* ================================
   WhatsApp Float Button
   ================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

/* ================================
   Hero Section
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.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(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

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

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

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ================================
   Section Header
   ================================ */

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Features Section
   ================================ */

.features {
    background: #f8fafc;
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon .material-symbols-outlined {
    font-size: 4rem;
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.feature-card h3 {
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================================
   Comparison Section
   ================================ */

.comparison {
    background: var(--white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row,
.comparison-footer {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
}

.comparison-cell {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.comparison-header .comparison-cell {
    font-weight: 700;
    font-size: 1.125rem;
}

.highlight-header {
    background: #fee2e2;
    color: var(--danger);
}

.primary-header {
    background: var(--gradient);
    color: var(--white);
}

.comparison-row:nth-child(even) .comparison-cell {
    background: #f8fafc;
}

.comparison-cell.label {
    font-weight: 600;
    text-align: left;
    background: var(--white) !important;
}

.comparison-cell.highlight {
    color: var(--danger);
}

.comparison-cell.primary {
    color: var(--primary);
    font-weight: 600;
}

.comparison-footer .comparison-cell {
    border-bottom: none;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-header,
    .comparison-row,
    .comparison-footer {
        grid-template-columns: 200px 150px 150px;
        min-width: 500px;
    }

    .comparison-cell {
        padding: 16px 12px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .comparison-cell.label {
        background: var(--primary) !important;
        color: var(--white);
        font-weight: 700;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
    }

    .comparison-header .comparison-cell {
        font-size: 1rem;
        padding: 20px 12px;
    }

    .comparison-footer .comparison-cell {
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
        padding: 16px 8px;
        font-size: 0.85rem;
    }
}

/* ================================
   Pricing Section
   ================================ */

.pricing {
    background: #f8fafc;
}

.pricing-category {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 40px;
    color: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-grid-corporate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card button {
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gray-light);
}

.price-setup,
.price-monthly {
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.price-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
}

.price-additional {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.price-additional p {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature-included {
    color: var(--success);
    font-weight: 500;
}

.feature-excluded {
    color: #ff9999;
    opacity: 0.7;
}

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

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ================================
   Stats Section
   ================================ */

.stats {
    background: var(--dark);
    color: var(--white);
}

.stats .section-header h2,
.stats .section-header p {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: var(--dark-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--gradient);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon .material-symbols-outlined {
    font-size: 4rem;
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
    display: block;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-description {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ================================
   Testimonials Section
   ================================ */

.testimonials {
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--gray);
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ================================
   Sectors Section
   ================================ */

.sectors {
    background: var(--white);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sector-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sector-card .material-symbols-outlined {
    font-size: 3rem;
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
}

.sector-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* ================================
   FAQ Section
   ================================ */

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

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .faq-item h3 {
        font-size: 1.125rem;
    }
}

/* ================================
   Contact Section
   ================================ */

.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    min-width: 50px;
}

.contact-icon .material-symbols-outlined {
    font-size: 2.5rem;
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-item p {
    color: var(--gray);
}

.cta-box {
    background: var(--gradient);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.cta-box p {
    margin-bottom: 20px;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.phone-group {
    display: flex;
    gap: 10px;
    position: relative;
}

.selected-flag {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
}

.selected-flag .fi {
    font-size: 1.4rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    display: block;
    width: 28px;
    height: 21px;
}

.country-code-select {
    flex: 0 0 60px;
    padding: 14px 10px 14px 48px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color 0.3s ease;
    color: transparent;
    text-indent: -9999px;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--primary);
}

.country-code-select option {
    padding: 10px;
    background: white;
    color: var(--dark);
    text-indent: 0;
    font-size: 1rem;
}

.phone-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--dark);
    pointer-events: none;
    z-index: 1;
    font-size: 0.95rem;
}

.phone-input-wrapper input[type="tel"] {
    width: 100%;
    padding-left: 60px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-section p {
    color: var(--gray-light);
    line-height: 1.7;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section .material-icons {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    color: var(--gray-light);
}

/* ================================
   Cookie Banner & KVKK Compliance
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cookie-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--primary);
}

.cookie-message h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.cookie-message p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: var(--primary-dark);
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

.cookie-settings-modal,
.cookie-policy-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
    position: relative;
    z-index: 10002;
}

.cookie-categories {
    margin-bottom: 30px;
}

.cookie-category {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

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

.category-info h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.category-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    flex-shrink: 0;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    background-color: #cbd5e1;
    border-radius: 28px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.switch:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .switch {
    background-color: var(--primary);
}

input:checked + .switch:before {
    transform: translateX(22px);
}

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

/* Policy Content */
.policy-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.policy-content h4 {
    color: var(--dark);
    margin-bottom: 12px;
    margin-top: 24px;
}

.policy-content h4:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-content li {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-content a {
    color: var(--primary);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 16px;
    }
    
    .cookie-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Cookie Modal Mobile */
    .cookie-modal {
        padding: 0;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cookie-modal .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 10001;
    }
    
    .cookie-settings-modal,
    .cookie-policy-modal {
        max-width: none;
        max-height: none;
        min-height: 100vh;
        width: 100%;
        margin: 0;
        border-radius: 0;
        overflow-y: visible;
    }
    
    .cookie-settings-modal .modal-content,
    .cookie-policy-modal .modal-content {
        border-radius: 0;
        padding: 20px 16px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        position: relative;
        z-index: 10003;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        font-size: 1.5rem;
        z-index: 10003;
    }
    
    .modal-header {
        margin-bottom: 20px;
        padding-top: 40px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-icon {
        font-size: 3rem !important;
    }
    
    /* Cookie Categories Mobile */
    .cookie-categories {
        margin-bottom: 20px;
    }
    
    .cookie-category {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .category-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .toggle-switch {
        align-self: flex-start;
    }
    
    .category-info h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .category-info p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Policy Content Mobile */
    .policy-content {
        max-height: none;
        padding-right: 0;
        flex: 1;
        overflow-y: visible;
    }
    
    .policy-content h4 {
        font-size: 1.125rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .policy-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .policy-content ul {
        margin-bottom: 12px;
        padding-left: 16px;
    }
    
    .policy-content li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 6px;
    }
    
    /* Modal Actions Mobile */
    .modal-actions {
        margin-top: auto;
        padding-top: 20px;
        margin-bottom: 0;
    }
    
    .modal-actions .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* ================================
   Utility Classes
   ================================ */

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

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

