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

:root {
    --primary-blue: #191970; /* Midnight Blue */
    --secondary-blue: #003366; /* Dark Blue */
    --accent-cyan: #33FFFF; /* Cyan accent */
    --light-blue: rgba(255,255,255,0.06);
    --dark-text: #ffffff;
    --light-text: #D9D9D9;
    --border-color: rgba(255,255,255,0.18);
    --success-color: #28a745;
}

body {
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark-text);
    background-color: var(--primary-blue);
    line-height: 1.6;
}

/* Header & Navigation */
.header {
    background-color: var(--primary-blue);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-cyan);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-cyan);
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #66ffff;
    border-color: #66ffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 255, 255, 0.25);
}

/* Services Preview */
.services-preview {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.services-preview h2,
.about h2,
.benefits-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent-cyan);
}

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

.service-card {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.service-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.card-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #66ffff;
}

/* About Section */
.about {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-item {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-cyan);
    border: 1px solid var(--border-color);
}

.about-item h4 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-item p {
    color: var(--light-text);
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.service-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-blue);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-detail.featured {
    background: linear-gradient(to right, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border-left: 4px solid var(--accent-cyan);
}

.service-detail h2 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.service-detail ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.service-detail li {
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-person {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.contact-person h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-person p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
}

.contact-link:hover {
    color: #66ffff;
    background-color: rgba(255,255,255,0.06);
}

.contact-icon {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    background-color: rgba(0,0,0,0.2);
    color: var(--dark-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(51, 255, 255, 0.15);
}

.submit-button {
    background-color: var(--accent-cyan);
    color: var(--primary-blue);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: #66ffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 255, 255, 0.25);
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
}

.map-section h2 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.map-section p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.map-section iframe {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

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

.benefit-item {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.benefit-item h4 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: #0f1333;
    color: white;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.footer-link {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.8;
}

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

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

    .nav {
        gap: 1rem;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .page-header h1 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 480px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .hero-content h1 {
            font-size: 1.5rem;
        }

        .nav {
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .logo {
            height: 45px;
        }
    }
}

/* Animations */
@keyframes revealWord {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-text {
    overflow: hidden;
}

.reveal-text .word {
    display: inline-block;
    opacity: 0;
    animation: revealWord 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    margin-right: 0.2em;
}

.reveal-text .word:nth-child(1) { animation-delay: 0.1s; }
.reveal-text .word:nth-child(2) { animation-delay: 0.25s; }
.reveal-text .word:nth-child(3) { animation-delay: 0.4s; }
.reveal-text .word:nth-child(4) { animation-delay: 0.55s; }

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up:nth-of-type(2) { animation-delay: 0.5s; }
.fade-in-up:nth-of-type(3) { animation-delay: 0.7s; }

[data-scroll-animate="true"] {
    opacity: 0;
    animation: slideInRight 0.7s ease-out forwards;
}

.fade-in-stagger {
    opacity: 0;
    animation: slideInRight 0.7s ease-out forwards;
}

/* Parallax Background */
[data-parallax="true"] {
    position: relative;
    overflow: hidden;
}

[data-parallax="true"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

[data-parallax="true"] > * {
    position: relative;
    z-index: 1;
}

/* Service Cards Stagger */
.services-grid [data-scroll-animate="true"]:nth-child(1) { animation-delay: 0.1s; }
.services-grid [data-scroll-animate="true"]:nth-child(2) { animation-delay: 0.2s; }
.services-grid [data-scroll-animate="true"]:nth-child(3) { animation-delay: 0.3s; }

.about-grid [data-scroll-animate="true"]:nth-child(1) { animation-delay: 0.1s; }
.about-grid [data-scroll-animate="true"]:nth-child(2) { animation-delay: 0.2s; }
.about-grid [data-scroll-animate="true"]:nth-child(3) { animation-delay: 0.3s; }
.about-grid [data-scroll-animate="true"]:nth-child(4) { animation-delay: 0.4s; }

.benefits-grid [data-scroll-animate="true"]:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid [data-scroll-animate="true"]:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid [data-scroll-animate="true"]:nth-child(3) { animation-delay: 0.3s; }
.benefits-grid [data-scroll-animate="true"]:nth-child(4) { animation-delay: 0.4s; }

.content-section [data-scroll-animate="true"]:nth-child(1) { animation-delay: 0.1s; }
.content-section [data-scroll-animate="true"]:nth-child(2) { animation-delay: 0.25s; }
.content-section [data-scroll-animate="true"]:nth-child(3) { animation-delay: 0.4s; }

/* Enhanced hover effects for scroll animations */
.service-card,
.about-item,
.benefit-item {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover,
.about-item:hover,
.benefit-item:hover {
    transform: translateY(-8px);
}