/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
}

.gradient-text {
    background: linear-gradient(135deg, #205f9f, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #205f9f;
    color: white;
}

.btn-primary:hover {
    background: #205f9f;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-secondary:hover {
    border-color: #205f9f;
    color: #205f9f;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #205f9f;
}

.nav-cta {
    display: none;
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
}

.mobile-cta {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f0fdf4 100%);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    z-index: 10;
}

.image-container img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px silver;
}

.image-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
}

.overlay-1 {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(5, 150, 105, 0.2));
    transform: rotate(3deg);
    z-index: -1;
}

.overlay-2 {
    background: linear-gradient(135deg, rgba(6, 13, 217, 0.2), rgba(8, 37, 169, 0.2));
    transform: rotate(-3deg);
    z-index: -2;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* About Section */
.about {
    background: white;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #f0f9ff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #e0e7ff;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #c7d2fe;
}

.feature-icon i {
    font-size: 2rem;
    color: #205f9f;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #374151;
}

.about-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #205f9f;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Services Section */
.services {
    background: #f9fafb;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #e0e7ff, #d1fae5);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #c7d2fe, #bbf7d0);
}

.service-icon i {
    font-size: 1.75rem;
    color: #205f9f;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.service-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: #059669;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-link {
    color: #205f9f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: #4338ca;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    gap: 3rem;
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.email {
    background: #e0e7ff;
}

.contact-icon.phone {
    background: #d1fae5;
}

.contact-icon.location {
    background: #fef3c7;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-icon.email i {
    color: #205f9f;
}

.contact-icon.phone i {
    color: #059669;
}

.contact-icon.location i {
    color: #d97706;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #6b7280;
}

.contact-form-container {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #205f9f;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links h4,
.footer-services h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-services a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom .fa-heart {
    color: #ef4444;
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 4rem;
}


/* Cookie Banner */
.cookie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-backdrop.visible {
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    border-top: 4px solid #2563eb;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.cookie-text {
    flex: 1;
    min-width: 0;
}

.cookie-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #6b7280;
    line-height: 1.6;
}

.cookie-text a {
    color: #2563eb;
    text-decoration: underline;
}

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

.close-btn {
    flex-shrink: 0;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #6b7280;
}

/* Cookie Details */
.cookie-details {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cookie-details.visible {
    opacity: 1;
    max-height: 500px;
}

.cookie-details h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.preference-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.preference-item:last-child {
    border-bottom: none;
}

.preference-info {
    flex: 1;
}

.preference-label {
    font-weight: 500;
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.preference-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

.toggle-container {
    flex-shrink: 0;
}

.toggle {
    width: 3rem;
    height: 1.5rem;
    background: #d1d5db;
    border: none;
    border-radius: 0.75rem;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    padding: 0.125rem;
}

.toggle.toggle-on {
    background: #10b981;
    cursor: default;
}

.toggle:not(.toggle-on):hover {
    background: #9ca3af;
}

.toggle.active {
    background: #2563eb;
}

.toggle-slider {
    width: 1rem;
    height: 1rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.toggle.active .toggle-slider {
    transform: translateX(1.5rem);
}

.toggle.toggle-on .toggle-slider {
    transform: translateX(1.5rem);
}

/* Cookie Actions */
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-header {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .preference-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .toggle-container {
        align-self: flex-end;
    }
