:root {
    --bg-color: #0f2236;
    /* Navy blue from logo */
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --accent-color: #ffff00;
    /* Yellow accent from original site */
    --font-family: 'Inter', sans-serif;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.h-heading__two {
    font-size: 2.5rem;
}

.text-white {
    color: #ffffff;
}

.text-yellow {
    color: var(--accent-color);
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Header */
.b-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 34, 54, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.progressContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    z-index: 1001;
}

#progress {
    height: 100%;
    width: 0%;
    background-color: var(--accent-color);
    transition: width 0.1s linear;
}

.b-header__main--inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo-img {
    height: 50px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.b-header__menu--list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.b-header__menu__menu__link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.b-header__menu__menu__link:hover,
.b-header__menu__menu__link.active {
    color: var(--accent-color);
}

.b-header__menu__menu__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.b-header__menu__menu__link:hover::after,
.b-header__menu__menu__link.active::after {
    width: 100%;
}

.b-header__buttons--nav {
    list-style: none;
}

.contact-link {
    border: 1px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

/* Main Content Padding */
.main-content {
    padding-top: 100px;
}

/* Our Approach Panel */
.b-our-approach-panel {
    padding: 100px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.b-our-approach-panel p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Standard Hero */
.b-standard-hero {
    width: 100%;
}

.b-standard-hero__container--banner {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
}

/* Two Cols Panel */
.two-cols-panel {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.two-cols-panel__container--inner {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.two-cols-panel__container--inner.reverse {
    flex-direction: row-reverse;
}

.two-cols-panel__container--col {
    flex: 1;
}

.two-cols-panel__container--col__content {
    padding-right: 40px;
}

.two-cols-panel__container--inner.reverse .two-cols-panel__container--col__content {
    padding-right: 0;
    padding-left: 40px;
}

figure {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

figure:hover img {
    transform: scale(1.03);
}

/* Footer */
.e-footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 40px 20px;
    background-color: #0b1a2a;
}

.e-footer__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.location-col h3 {
    margin-bottom: 10px;
}

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

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

.e-footer__credit {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Animations (Intersection Observer Targets) */
.js-anim {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

/* Fade Up */
.fadeUp.js-anim__visible {
    opacity: 1;
    visibility: visible;
    animation: fadeUpAnim 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeUpAnim {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Slide Up (Used specifically in code for texts) */
.h-animate-in-slide-up.js-anim__visible {
    opacity: 1;
    visibility: visible;
    animation: slideUpAnim 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideUpAnim {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Fade In */
.h-animate-in-fade.js-anim__visible {
    opacity: 1;
    visibility: visible;
    animation: fadeInAnim 1s ease forwards;
}

@keyframes fadeInAnim {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

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

    .two-cols-panel__container--inner,
    .two-cols-panel__container--inner.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .two-cols-panel__container--col__content,
    .two-cols-panel__container--inner.reverse .two-cols-panel__container--col__content {
        padding: 0;
        text-align: center;
    }

    .b-header__menu--list {
        display: none;
        /* Hide on mobile for simplicity in this demo */
    }
}

/* Contact Form Styles */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(15, 34, 54, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

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

.contact-submit {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-submit:hover {
    opacity: 0.9;
}

/* Google Translate Overrides */
body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

/* Lang Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #0b1a2a;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 120px;
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 10px 16px;
    color: var(--text-color);
    font-size: 0.9rem;
    display: block;
    transition: background 0.2s;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

/* WhatsApp Big CTA */
.wa-big-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s, background-color 0.3s;
}

.wa-big-btn:hover {
    transform: translateY(-3px);
    background-color: #20b858;
    color: white;
}

.wa-big-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* As requested: bottom left */
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

.floating-wa svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}