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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #F8FAFC;
    background-color: #0F0F0F;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #CBD5E1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1E1B4B 50%, #0F0F0F 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content .logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 0;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 0;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: #CBD5E1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: #F8FAFC;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #06B6D4;
    border-color: #06B6D4;
}

.cta-button.secondary:hover {
    background: #06B6D4;
    color: #F8FAFC;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #111111;
}

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

.about-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
}

.about-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.about-item h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.about-item p {
    color: #CBD5E1;
}

/* Service Sections */
.service-section {
    padding: 8rem 0;
    background: #0F0F0F;
}

.service-section.alt {
    background: #111111;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    color: #F8FAFC;
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: #CBD5E1;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.service-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #06B6D4;
    border-radius: 50%;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-image {
    position: relative;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

.corporate-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

.map-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

/* Products Section */
.products {
    padding: 8rem 0;
    background: #111111;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06B6D4, #00FFFF);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
}

.product-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.product-card h3 {
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.product-card p {
    color: #CBD5E1;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 2rem;
}

.product-button {
    display: inline-block;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: #F8FAFC;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* Membership Section */
.membership {
    padding: 8rem 0;
    background: #0F0F0F;
}

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

.membership-card {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.membership-card.featured {
    border-color: #06B6D4;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.membership-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06B6D4, #00FFFF);
    color: #1E1B4B;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.membership-card h3 {
    color: #F8FAFC;
    margin-bottom: 1.5rem;
}

.membership-price {
    font-size: 3rem;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 2rem;
}

.membership-price span {
    font-size: 1.2rem;
    color: #64748B;
}

.membership-card ul li {
    padding: 0.75rem 0;
    color: #CBD5E1;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.membership-card ul li:last-child {
    border-bottom: none;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

/* Corporate Section */
.corporate {
    padding: 8rem 0;
    background: #111111;
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.corporate-text h2 {
    color: #F8FAFC;
    margin-bottom: 1.5rem;
}

.corporate-text p {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.corporate-features {
    display: grid;
    gap: 1.5rem;
}

.feature h4 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: #94A3B8;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #0F0F0F;
}

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

.feature-card {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-card h3 {
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #CBD5E1;
    margin-bottom: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
}

/* Contacts Section */
.contacts {
    padding: 8rem 0;
    background: #111111;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.4);
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #CBD5E1;
    margin-bottom: 0;
}

.contact-item a {
    color: #06B6D4;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contacts-map {
    margin-top: 4rem;
}

.map-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 1.1rem;
    border: 2px dashed rgba(6, 182, 212, 0.3);
}

/* Footer */
.footer {
    background: #0A0A0A;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(55, 65, 81, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-brand h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-brand p {
    color: #64748B;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: #F8FAFC;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #94A3B8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #06B6D4;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: #64748B;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Centered content for index page */
.centered-content {
    text-align: center;
}

.centered-content .section-header {
    text-align: center;
}

.centered-content .service-content {
    text-align: left;
}

.centered-content .about-grid,
.centered-content .products-grid,
.centered-content .membership-grid,
.centered-content .features-grid {
    justify-items: center;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border: 2px solid #06B6D4;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #CBD5E1;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: #00FFFF;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: #F8FAFC;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.cookie-btn.reject {
    background: transparent;
    color: #94A3B8;
    border: 1px solid #374151;
}

.cookie-btn.reject:hover {
    background: #374151;
    color: #F8FAFC;
}

.cookie-btn.customize {
    background: transparent;
    color: #06B6D4;
    border: 1px solid #06B6D4;
}

.cookie-btn.customize:hover {
    background: #06B6D4;
    color: #F8FAFC;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1E1B4B, #374151);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: #06B6D4;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.cookie-close {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #F8FAFC;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    color: #00FFFF;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #CBD5E1;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-category input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #06B6D4;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content .logo-section {
        justify-content: center;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .service-content,
    .service-content.reverse,
    .corporate-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-grid,
    .products-grid,
    .membership-grid,
    .features-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 4rem 0 !important;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-banner {
        margin: 0 10px;
        bottom: 10px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        max-height: 90vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-item,
    .product-card,
    .membership-card,
    .feature-card,
    .contact-item {
        padding: 2rem;
    }

    .membership-price {
        font-size: 2.5rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-text h3 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }

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

    .cookie-btn {
        width: 100%;
        padding: 0.75rem;
    }

    .cookie-modal-header h3 {
        font-size: 1.3rem;
    }

    .cookie-category h4 {
        font-size: 1rem;
    }
}