@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-orange: #FF8C00;
    --primary-orange-hover: #E67300;
    --primary-teal: #2EC4B6;
    --dark-charcoal: #1A1A1A;
    --medium-grey: #333333;
    --light-grey: #F0F0F0;
    --white: #FFFFFF;
    --header-height: 80px;
    --header-height-tablet: 70px;
    --header-height-mobile: 64px;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: var(--dark-charcoal);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    height: 70px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-orange);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: scale(1.05);
}

.customer-login {
    color: var(--light-grey);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.customer-login:hover {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-charcoal);
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.mobile-menu a:hover {
    color: var(--primary-orange);
}

.mobile-menu .btn-primary {
    margin-top: 20px;
    font-size: 16px;
    padding: 16px 32px;
}

/* ============ HERO SECTIONS ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0);
    transition: filter 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9));
    z-index: 0;
}

.hero-content {
    text-align: center;
    padding: 40px 24px;
    max-width: 900px;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    font-size: 18px;
    color: var(--light-grey);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    animation-name: fadeInUpPulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpPulse {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 24px;
}

.section-light {
    background-color: var(--light-grey);
}

.section-dark {
    background-color: var(--dark-charcoal);
    color: var(--white);
}

.section-white {
    background-color: var(--white);
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-charcoal);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-grey);
    margin-bottom: 40px;
    max-width: 700px;
}

.section-dark .section-subtitle {
    color: var(--light-grey);
}

/* ============ SPLIT LAYOUT ============ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.split-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 20px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ============ CARDS GRID ============ */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-teal);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    color: var(--primary-teal);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-charcoal);
}

.card p {
    font-size: 14px;
    color: var(--medium-grey);
    margin-bottom: 16px;
}

.card-link {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--primary-orange-hover);
}

/* ============ STATS COUNTER ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--light-grey);
    margin-top: 8px;
}

/* ============ PROCESS STEPS ============ */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--medium-grey);
}

/* ============ TESTIMONIALS ============ */
.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.testimonial-quote {
    font-style: italic;
    font-size: 18px;
    color: var(--medium-grey);
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-charcoal);
}

.testimonial-role {
    font-size: 14px;
    color: var(--primary-teal);
}

/* ============ CTA SECTIONS ============ */
.cta-section {
    background-color: var(--primary-orange);
    padding: 60px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* ============ FOOTER ============ */
.footer {
    background-color: var(--dark-charcoal);
    color: var(--light-grey);
    padding: 60px 24px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-mission {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--light-grey);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--primary-teal);
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* ============ FORMS ============ */
.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-grey);
    border-radius: 4px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============ PRODUCT CARDS ============ */
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-content {
    padding: 20px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: var(--medium-grey);
    margin-bottom: 16px;
}

/* ============ SERVICES ============ */
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--light-grey);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--primary-teal);
}

/* ============ ACCORDION ============ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--light-grey);
}

.accordion-header h3 {
    font-size: 18px;
    color: var(--dark-charcoal);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--primary-teal);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 20px;
    background-color: var(--light-grey);
}

/* ============ MAP ============ */
.map-container {
    width: 100%;
    height: 300px;
    background-color: var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--medium-grey) 100%);
    color: var(--light-grey);
    font-size: 14px;
}

/* ============ TEAM CARDS ============ */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.team-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-content {
    padding: 24px;
    text-align: center;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-card .role {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.team-card p {
    font-size: 14px;
    color: var(--medium-grey);
}

/* ============ GLOBE MAP ============ */
.globe-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.globe-container img {
    width: 100%;
    border-radius: 8px;
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

/* ============ CERTIFICATIONS ============ */
.cert-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge {
    width: 120px;
    height: 120px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-teal);
    border: 2px solid var(--light-grey);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 0 20px rgba(46, 196, 182, 0.3);
}

/* ============ RESPONSIVE STYLES ============ */

/* Tablet */
@media (min-width: 768px) {
    :root {
        --header-height: var(--header-height-tablet);
    }

    .hero h1 {
        font-size: 56px;
    }

    .section {
        padding: 100px 40px;
    }

    .split-layout {
        grid-template-columns: 1fr 1fr;
    }

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        flex: 0 0 calc(50% - 12px);
    }

    .testimonials-slider {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

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

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    .header-container {
        padding: 0 48px;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero p {
        font-size: 20px;
    }

    .section {
        padding: 120px 48px;
    }

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

    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-step {
        flex: 0 0 calc(20% - 19px);
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }

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

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Header */
@media (max-width: 1023px) {
    .nav-links,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        height: var(--header-height-mobile);
    }

    .hero {
        padding-top: var(--header-height-mobile);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .cta-section h2 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .card,
    .process-step,
    .hero-content * {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero .btn-primary {
        animation: none;
    }
}