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

:root {
    --color-bg: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-card: #111111;
    --color-text: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-primary: #ff00ff;
    --color-secondary: #00ffff;
    --color-accent: #00ff00;
    --color-purple: #9d00ff;
    --color-pink: #ff0080;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-primary);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo .pulse {
    color: var(--color-primary);
    text-shadow: 0 0 10px var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2), transparent);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
    border: 2px solid var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
    color: var(--color-text);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--color-bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

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

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.feature-card p {
    color: var(--color-text-secondary);
}

/* About Preview */
.about-preview {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
    font-size: 18px;
}

.about-text .btn {
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.1), transparent);
    animation: pulse 3s ease-in-out infinite;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--color-bg-card);
    padding: 60px 0 20px;
    border-top: 2px solid var(--color-primary);
}

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

.footer-col h4 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p,
.footer-col ul {
    color: var(--color-text-secondary);
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
}

/* Page Header */
.page-header {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--color-text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--color-bg-secondary);
}

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

.pricing-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 20px;
}

.price .amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--color-text);
}

.price .period {
    font-size: 18px;
    color: var(--color-text-secondary);
}

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

.pricing-features li {
    padding: 12px 0;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* Services Details */
.services-details {
    padding: 80px 0;
}

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

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

.service-item img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.service-item p {
    color: var(--color-text-secondary);
}

/* Forms */
.booking-section,
.contact-section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.booking-form,
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

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

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--color-text-secondary);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--color-bg-secondary);
}

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

.faq-item {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--color-text-secondary);
}

/* About Page */
.about-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.story-text p {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    font-size: 18px;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.2);
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--color-bg-secondary);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.mv-card {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--color-text-secondary);
    font-size: 18px;
}

.values {
    padding: 80px 0;
}

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

.value-card {
    background: var(--color-bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

.value-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--color-text-secondary);
}

.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
}

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

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

.stat-number {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--color-text-secondary);
}

.office-location {
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.location-info h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
    margin-top: 20px;
}

.location-info h3:first-of-type {
    margin-top: 0;
}

.location-info p {
    color: var(--color-text-secondary);
    font-size: 16px;
}

.map-placeholder {
    background: var(--color-bg-card);
    border: 2px solid var(--color-secondary);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    color: var(--color-text-secondary);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
}

.legal-wrapper h2 {
    font-size: 28px;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-wrapper h2:first-of-type {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 22px;
    color: var(--color-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-wrapper p {
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--color-text-secondary);
}

.legal-wrapper ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-wrapper a {
    color: var(--color-primary);
    text-decoration: none;
}

.legal-wrapper a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.legal-footer p {
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* Success Message */
.success-message {
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid var(--color-accent);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container,
    .about-content,
    .story-content,
    .location-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

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

    .legal-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-top: 2px solid var(--color-primary);
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .pricing-grid,
    .services-grid,
    .features-grid,
    .values-grid,
    .stats-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
