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

:root {
    /* Neon Tech Color Scheme - Matching Logo */
    --primary-color: #00d9ff; /* Cyan neon - main accent */
    --primary-dark: #00a8cc; /* Darker cyan */
    --primary-purple: #9333ea; /* Purple accent from logo */
    --primary-blue: #3b82f6; /* Blue accent from logo */
    --secondary-color: #10b981; /* Green for WhatsApp */
    --neon-glow: #00ffff; /* Bright cyan neon glow */
    
    /* Background Colors */
    --bg-dark: #0a0a0a; /* Almost black - matching logo */
    --bg-dark-secondary: #111827; /* Slightly lighter dark */
    --bg-light: #1f2937; /* Dark gray for sections */
    --bg-white: #ffffff;
    
    /* Text Colors */
    --text-light: #ffffff; /* White text */
    --text-dark: #e5e7eb; /* Light gray text */
    --text-muted: #9ca3af; /* Muted gray */
    
    /* Borders and Effects */
    --border-color: rgba(0, 217, 255, 0.2); /* Subtle cyan border */
    --neon-border: linear-gradient(90deg, #9333ea, #3b82f6, #00d9ff); /* Logo border gradient */
    
    /* Shadows with neon glow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 217, 255, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 217, 255, 0.2);
    --neon-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

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

/* Header Styles */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 217, 255, 0.1);
}

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

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.logo-tagline {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 400;
}

.navigation {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

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

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
}

.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue), var(--primary-color));
    color: white;
    border: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5), 0 0 30px rgba(0, 217, 255, 0.3);
    filter: brightness(1.1);
}

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

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

.btn-call {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: white;
    border: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    transition: all 0.3s;
}

.btn-whatsapp {
    background-color: var(--secondary-color);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.btn-call:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

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

.hero-subtitle {
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.note-icon {
    font-size: 1.25rem;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.page-description {
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
}

.why-choose h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.section-description {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.benefit-item {
    background-color: rgba(31, 41, 55, 0.8);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
    border-color: var(--primary-color);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.4);
}

.benefit-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.faq-footer {
    text-align: center;
    color: var(--text-light);
    margin-top: 2rem;
}

/* Services Grid */
.services-grid {
    padding: 2rem 0 4rem;
}

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

.service-card {
    background-color: rgba(31, 41, 55, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
    border-color: var(--primary-color);
}

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

.service-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.4);
}

.service-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
}

.service-cta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-cta p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.services-help {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.services-help h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-help > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.help-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.help-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.help-text {
    color: var(--text-light);
    font-style: italic;
}

/* Support Page */
.support-content {
    padding: 2rem 0 4rem;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-form-section h3,
.direct-contact-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.support-form-section > p,
.direct-contact-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.enquiry-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-cards {
    margin-bottom: 3rem;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-role {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.contact-icon {
    font-size: 1.25rem;
}

.email-support {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
}

.email-support h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.email-support > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.email-link {
    display: inline-flex;
    margin-bottom: 1rem;
}

.email-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--border-color);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-border);
    opacity: 0.3;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-logo .logo-name {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

.contact-person {
    margin-bottom: 2rem;
}

.contact-person p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-person > p:first-child {
    font-weight: 700;
}

.contact-person > p:nth-child(2) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-person a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.contact-person a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-built {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .navigation {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .services-grid .container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

