:root {
    --primary: #000000;
    --primary-light: #1A1A1A;
    --secondary: #FFB900;
    --secondary-hover: #E6A700;
    --accent: #FFD700;
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F8F9FA;
    --gray-100: #E9ECEF;
    --gray-200: #DEE2E6;
    --text: #1A1A1A;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-900);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 100px 0;
}

.subtitle {
    display: inline-block;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    gap: 30px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-map:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-map i {
    width: 16px;
    height: 16px;
    margin-bottom: 0 !important;
}

/* Header & Nav */
#site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

#site-header.scrolled,
#site-header.menu-active {
    background: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url('header-pattern.png') center/cover;
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

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

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

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 15px rgba(255, 185, 0, 0.45));
}

.logo-img:hover {
    transform: scale(1.02);
}

#site-header.scrolled .logo-img {
    height: 85px;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
}

.footer-brand .logo-img {
    height: 150px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .logo-img {
        height: 80px;
    }

    #site-header.scrolled .logo-img {
        height: 65px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('hero-neutral.png') center/cover no-repeat;
    color: var(--white);
    padding-top: 100px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-text .badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 102, 0, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

/* Features */
.features {
    padding-bottom: 0;
}

/* Page Header for internal pages */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('hero-neutral.png') center/cover no-repeat;
    padding: 200px 0 120px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-top: 10px;
}

.bg-gray {
    background-color: var(--gray-50);
}

.features .grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: -150px;
    position: relative;
    z-index: 5;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    color: var(--secondary);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

/* About Us Section */
.about {
    background-color: var(--white);
    overflow: hidden;
}

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

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    transform: translate(15px, 15px);
    z-index: -1;
    opacity: 0.3;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    transform: translate(15px, 15px);
    z-index: -1;
    opacity: 0.3;
}

.about-image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: floatAbout 6s ease-in-out infinite;
    border: 1px solid rgba(255, 185, 0, 0.1);
}

@keyframes floatAbout {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.about-image:hover img {
    box-shadow: 0 40px 80px rgba(255, 185, 0, 0.15);
    border-color: var(--secondary);
}

.about-text {
    text-align: center;
}

.about-text .subtitle {
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    justify-items: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.highlight-item i {
    color: var(--secondary);
    width: 20px;
    height: 20px;
}

/* Mission, Vision, Values */
.mission-vision .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.value-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    color: var(--secondary);
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.value-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
        text-align: center;
    }

    .about-highlights {
        justify-content: center;
    }
}

/* Services */
.services {
    background-color: var(--gray-50);
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    color: var(--secondary);
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 0 45px rgba(255, 185, 0, 0.4));
    transition: var(--transition);
    cursor: pointer;
}

.cta-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 45px rgba(255, 185, 0, 0.4));
}

/* Testimonials */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    padding: 40px;
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    color: #FFC107;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 24px;
}

.user-info {
    margin-top: auto;
}

.user-info strong {
    display: block;
    font-size: 1.1rem;
}

.user-info span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

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

.contact-items {
    margin-top: 40px;
}

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

.contact-item i {
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

.full-width {
    width: 100%;
}

/* Footer */
.site-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.94)), url('footer-bg.png') center/cover no-repeat fixed;
    color: var(--white);
    padding-top: 80px;
    border-top: 5px solid var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-brand p {
    opacity: 0.7;
    margin-bottom: 12px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)), url('header-pattern.png') center/cover;
        backdrop-filter: blur(10px);
        padding: 35px 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        gap: 15px;
        text-align: center;
        z-index: 999;
        transition: var(--transition);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-light);
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }

    .nav-links a:hover {
        background: rgba(255, 185, 0, 0.1);
        color: var(--secondary);
    }

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

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }

    .feature-card,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}