/* =========================
   BASE & RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0b0f1a 0%, #1a1f35 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

body:not(.dark) {
    background: #f5f5f5;
    color: #000;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    color: #000;    transition: background 0.3s ease, color 0.3s ease;
}

body.dark .navbar {
    background: rgba(10,14,25,0.95);
    border-bottom-color: #444;
    color: #fff;}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-texts {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.75rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: flex-end;
}

.language-menu {
    position: relative;
}

/* Bridge area so moving from toggle to dropdown doesn't close menu */
.language-menu::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 74px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 180, 0, 0.35);
    background: rgba(255, 180, 0, 0.08);
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.language-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 180, 0, 0.7);
    background: rgba(255, 180, 0, 0.16);
}

.language-toggle:focus {
    outline: none;
    border-color: #ffb400;
}

.language-current {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.language-caret {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.language-options {
    position: absolute;
    right: 0;
    top: calc(100% + 2px);
    min-width: 120px;
    display: grid;
    gap: 4px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 180, 0, 0.25);
    background: rgba(12, 16, 28, 0.98);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1200;
}

body:not(.dark) .language-options {
    background: rgba(255, 255, 255, 0.98);
}

.language-menu.open .language-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.language-menu.open .language-caret {
    transform: rotate(180deg);
}

.language-option {
    border: none;
    border-radius: 8px;
    padding: 7px 8px;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-option:hover,
.language-option.active {
    background: rgba(255, 180, 0, 0.16);
    color: #ffb400;
}

/* theme toggle button */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffb400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    border: none;
}

body.dark .theme-toggle {
    background: #444;
    color: #fff;
}

.theme-toggle.active {
    transform: rotate(360deg);
}

.nav-link {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

body:not(.dark) .nav-link {
    color: #333;
}

.nav-link:hover,
.nav-link.active {
    color: #ffb400;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffb400, #ff8c00);
}

.contact-btn {
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 180, 0, 0.3);
}

/* section backgrounds for light mode */
body:not(.dark) .services-section,
body:not(.dark) .location-section,
body:not(.dark) .booking-section {
    background: rgba(255, 255, 255, 0.8);
}

body:not(.dark) .subtitle,
body:not(.dark) .features p,
body:not(.dark) .service-card p,
body:not(.dark) .location-section p,
body:not(.dark) .booking-section p {
    color: #555;
}

/* ensure call-to-action buttons remain vibrant in light */
body:not(.dark) .cta-button:not(.secondary) {
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    color: #000;
}

body:not(.dark) .cta-button.secondary {
    color: #ffb400;
    border-color: #ffb400;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================
   MAIN CONTENT
========================= */

main {
    padding-top: 100px;
    min-height: 100vh;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

body.dark .hero-content h2 {
    color: #ddd;
}

body.dark .hero-content p {
    color: #bbb;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    margin-right: 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.cta-button:not(.secondary) {
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    border-color: transparent;
    color: #000;
}

.cta-button:not(.secondary):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 180, 0, 0.3);
}

.cta-button.secondary {
    border-color: #ffb400;
    color: #ffb400;
}

.cta-button.secondary:hover {
    background: rgba(255, 180, 0, 0.1);
}

/* =========================
   FEATURES SECTION
========================= */

.features {
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.8);
    max-width: 1400px;
    margin: 80px auto;
    border-radius: 15px;
}

body.dark .features {
    background: rgba(30, 35, 60, 0.5);
}

.features h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

body.dark .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 180, 0, 0.1);
}

.feature-card:hover {
    border-color: rgba(255, 180, 0, 0.5);
    background: rgba(255, 180, 0, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #bbb;
    font-size: 0.95rem;
}

/* =========================
   ABOUT SECTION
========================= */

.about-page {
    --about-accent: #ffb400;
    --about-accent-strong: #ff7b39;
    --about-surface: rgba(255, 255, 255, 0.9);
    --about-surface-dark: rgba(14, 20, 36, 0.9);
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-hero-panel,
.about-leadership-panel,
.about-facts-panel,
.about-story-card,
.executive-profile {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 180, 0, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.about-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 180, 0, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(8, 13, 24, 0.98), rgba(18, 25, 44, 0.96));
}

.about-hero-panel::after {
    content: '';
    position: absolute;
    inset: auto -12% -28% auto;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 123, 57, 0.22), transparent 65%);
    pointer-events: none;
    filter: blur(10px);
}

.about-hero-copy,
.about-hero-media,
.about-hero-meta {
    position: relative;
    z-index: 1;
}

.about-eyebrow,
.about-highlight-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0f172a;
    background: rgba(255, 180, 0, 0.22);
    padding: 8px 12px;
    border-radius: 999px;
    width: fit-content;
}

body.dark .about-eyebrow,
body.dark .about-highlight-label {
    color: #fff;
    background: rgba(255, 180, 0, 0.18);
}

.about-hero-copy h1,
.about-section-heading h2,
.about-story-card h2,
.about-story-card h3,
.executive-body h3 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

.about-hero-copy {
    display: grid;
    align-content: center;
    min-height: clamp(480px, 62vh, 760px);
    padding: 10px 4px 10px 6px;
}

.about-hero-copy h1 {
    font-size: clamp(2.7rem, 5.2vw, 5.8rem);
    line-height: 0.92;
    margin: 18px 0 18px;
    color: #fff;
    max-width: 760px;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.about-subtitle {
    max-width: 620px;
    margin-bottom: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
    margin-top: 8px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}

.about-meta-card {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(0);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-meta-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 180, 0, 0.28);
    background: linear-gradient(180deg, rgba(255, 180, 0, 0.16), rgba(255, 255, 255, 0.05));
}

.about-meta-label,
.about-story-card p,
.about-facts-intro {
    color: #5b6474;
}

body.dark .about-story-card p,
body.dark .about-meta-label,
body.dark .about-facts-intro {
    color: #c7d0dd;
}

.about-meta-card strong {
    font-size: 1.12rem;
    color: #fff;
}

.about-hero-media {
    display: grid;
    align-content: center;
    gap: 18px;
    min-width: 0;
}

.about-image-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: clamp(320px, 42vw, 620px);
    max-height: 680px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 13, 24, 0.04), rgba(8, 13, 24, 0.18) 45%, rgba(8, 13, 24, 0.5) 100%),
        radial-gradient(circle at top right, rgba(255, 180, 0, 0.22), transparent 22%);
    z-index: 1;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
    transition: transform 0.9s ease;
}

.about-hero-panel:hover .about-hero-image {
    transform: scale(1.06);
}

.about-floating-note {
    width: fit-content;
    max-width: min(100%, 360px);
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.about-floating-note span {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 8px;
}

.about-floating-note strong {
    display: block;
    color: #fff;
    line-height: 1.5;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
    margin: 30px 0;
}

.about-story-card {
    padding: 34px;
    background: var(--about-surface);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-story-card:hover,
.about-fact:hover,
.executive-profile:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 180, 0, 0.24);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

body.dark .about-story-card {
    background: var(--about-surface-dark);
}

.about-story-card h2,
.about-story-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #ffb400;
}

.about-story-card p + p {
    margin-top: 16px;
}

.about-intro {
    font-size: 1.08rem;
    color: #111827;
    line-height: 1.75;
}

body.dark .about-intro {
    color: #fff;
}

.about-story-highlight {
    background:
        radial-gradient(circle at top right, rgba(255, 180, 0, 0.2), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 220, 0.9));
}

body.dark .about-story-highlight {
    background:
        radial-gradient(circle at top right, rgba(255, 180, 0, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(20, 26, 45, 0.96), rgba(29, 36, 60, 0.92));
}

.about-leadership-panel {
    margin-top: 30px;
    padding: 38px;
    background: var(--about-surface);
}

body.dark .about-leadership-panel {
    background: var(--about-surface-dark);
}

.executive-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.executive-profile {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 248, 235, 0.94), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(255, 180, 0, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.dark .executive-profile {
    background: linear-gradient(180deg, rgba(22, 28, 48, 0.96), rgba(13, 19, 34, 0.98));
}

.executive-portrait {
    border-radius: 20px;
    min-height: 220px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.executive-portrait-one {
    background: linear-gradient(160deg, rgba(255, 180, 0, 0.9), rgba(255, 123, 57, 0.88));
}

.executive-portrait-two {
    background: linear-gradient(160deg, rgba(255, 123, 57, 0.9), rgba(84, 104, 255, 0.82));
}

.executive-portrait span {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.95);
}

.executive-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 180, 0, 0.16);
    color: #8a4b00;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

body.dark .executive-kicker {
    color: #ffd37f;
}

.executive-body h3 {
    font-size: 1.95rem;
    color: var(--about-accent);
    margin-bottom: 6px;
}

.executive-role-main {
    color: #111827;
    font-weight: 700;
    margin-bottom: 10px;
}

body.dark .executive-role-main {
    color: #fff;
}

.executive-function {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 14px;
}

body.dark .executive-function {
    color: #cbd5e1;
}

.executive-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.executive-meta-inline span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 180, 0, 0.1);
    color: #374151;
    font-size: 0.82rem;
    font-weight: 600;
}

body.dark .executive-meta-inline span {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.executive-related-label {
    color: #475569;
    margin-bottom: 8px;
}

body.dark .executive-related-label {
    color: #cbd5e1;
}

.executive-related-link {
    color: var(--about-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.about-facts-panel {
    padding: 38px;
    margin-top: 30px;
    background: var(--about-surface);
}

body.dark .about-facts-panel {
    background: var(--about-surface-dark);
}

.about-section-heading {
    margin-bottom: 24px;
}

.about-section-heading h2 {
    font-size: 2.5rem;
    color: #ffb400;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-fact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 180, 0, 0.1), rgba(255, 247, 230, 0.82));
    border: 1px solid rgba(255, 180, 0, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.dark .about-fact {
    background: linear-gradient(180deg, rgba(255, 180, 0, 0.08), rgba(255, 255, 255, 0.03));
}

.about-fact-wide {
    grid-column: span 2;
}

.about-fact-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
}

body.dark .about-fact-label {
    color: #cbd5e1;
}

.about-fact-value {
    margin-top: 12px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #0f172a;
}

body.dark .about-fact-value {
    color: #fff;
}

.about-hero-copy,
.about-hero-media,
.about-story-card,
.about-leadership-panel,
.about-facts-panel {
    animation: aboutReveal 0.8s ease both;
}

.about-hero-media {
    animation-delay: 0.12s;
}

.about-story-card:nth-child(1) {
    animation-delay: 0.18s;
}

.about-story-card:nth-child(2) {
    animation-delay: 0.26s;
}

.about-leadership-panel {
    animation-delay: 0.34s;
}

.about-facts-panel {
    animation-delay: 0.42s;
}

@keyframes aboutReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-copy,
    .about-hero-media,
    .about-story-card,
    .about-leadership-panel,
    .about-facts-panel {
        animation: none;
    }

    .about-hero-image,
    .about-meta-card,
    .about-story-card,
    .about-fact,
    .executive-profile {
        transition: none;
    }
}

@media (max-width: 1180px) {
    .about-hero-panel {
        grid-template-columns: 1fr;
    }

    .about-hero-copy {
        min-height: auto;
        padding: 0;
    }

    .about-hero-meta,
    .about-story-grid,
    .executive-gallery,
    .about-facts {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-frame {
        min-height: clamp(280px, 46vw, 460px);
        max-height: 520px;
    }
}

@media (max-width: 900px) {
    .about-page {
        padding: 56px 20px;
    }

    .about-hero-panel,
    .about-leadership-panel,
    .about-facts-panel,
    .about-story-card {
        padding: 24px;
    }

    .about-hero-meta,
    .about-story-grid,
    .executive-gallery,
    .about-facts {
        grid-template-columns: 1fr;
    }

    .executive-profile {
        grid-template-columns: 1fr;
    }

    .executive-portrait {
        min-height: 190px;
    }

    .about-hero-copy h1 {
        font-size: clamp(2.3rem, 9vw, 4rem);
    }

    .about-image-frame {
        min-height: clamp(240px, 56vw, 360px);
        max-height: 380px;
    }

    .about-fact-wide {
        grid-column: span 1;
    }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section,
.location-section,
.booking-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-section h1,
.location-section h1,
.booking-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    text-align: center;
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.05), rgba(255, 140, 0, 0.05));
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 180, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: rgba(255, 180, 0, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 180, 0, 0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h2,
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffb400;
}

.service-card p {
    color: #bbb;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #ddd;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffb400;
    font-weight: bold;
}

.service-btn,
.submit-btn {
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 180, 0, 0.3);
}

/* =========================
   LOCATION SECTION
========================= */

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-areas h2,
.service-areas h3 {
    color: #ffb400;
    margin-top: 20px;
    margin-bottom: 15px;
}

.areas-list {
    list-style: none;
    margin-bottom: 30px;
}

.areas-list li {
    padding: 10px 0;
    color: #ddd;
    font-size: 0.95rem;
}

.service-areas p {
    color: #bbb;
    margin-bottom: 10px;
}

.service-areas a {
    color: #ffb400;
    text-decoration: none;
    font-weight: 600;
}

.service-areas a:hover {
    text-decoration: underline;
}

/* =========================
   BOOKING FORM
========================= */

.booking-form {
    background: rgba(30, 35, 60, 0.5);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 180, 0, 0.1);
    max-width: 800px;
    margin: 40px auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffb400;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 180, 0, 0.2);
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb400;
    background: rgba(255, 180, 0, 0.1);
}

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

.form-note {
    text-align: center;
    color: #bbb;
    margin: 30px 0 20px;
    font-size: 0.9rem;
}

.whatsapp-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* =========================
   ALERTS
========================= */

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25d366;
    color: #25d366;
}

.alert-error {
    background: rgba(255, 76, 76, 0.1);
    border: 1px solid #ff4c4c;
    color: #ff4c4c;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: rgba(10, 14, 25, 0.95);
    border-top: 1px solid rgba(255, 180, 0, 0.1);
    color: #ddd;
    padding: 60px 40px 20px;
    margin-top: 80px;
    transition: background 0.3s ease, color 0.3s ease;
}

body:not(.dark) .footer {
    background: #f5f5f5;
    border-top-color: #ddd;
    color: #333;
}

body:not(.dark) .footer-section h3,
body:not(.dark) .footer-section h4 {
    color: #ffb400;
}

body:not(.dark) .footer-section p,
body:not(.dark) .footer-section a,
body:not(.dark) .footer-bottom {
    color: #333;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffb400;
    margin-bottom: 15px;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffb400;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 180, 0, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* =========================
   TERMS & CONDITIONS
========================= */

.terms-page {
    padding: 60px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.terms-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.terms-header {
    text-align: center;
    border-bottom: 2px solid #ffb400;
    padding-bottom: 30px;
}

.terms-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #ffb400;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.terms-meta {
    color: #888;
    font-size: 0.9rem;
}

.terms-intro {
    background: rgba(255, 180, 0, 0.05);
    border-left: 4px solid #ffb400;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    font-size: 1rem;
    line-height: 1.8;
}

.terms-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 180, 0, 0.12);
    border-radius: 14px;
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.terms-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    color: #ffb400;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.terms-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    margin-top: 8px;
}

.terms-section p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #ccc;
}

.terms-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.terms-section ul li {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #ccc;
    padding-left: 18px;
    position: relative;
}

.terms-section ul li::before {
    content: '›';
    color: #ffb400;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.terms-section a {
    color: #ffb400;
    text-decoration: none;
    transition: opacity 0.2s;
}

.terms-section a:hover {
    opacity: 0.8;
}

.terms-footer-note {
    text-align: center;
    padding: 30px;
    background: rgba(255, 180, 0, 0.05);
    border: 1px solid rgba(255, 180, 0, 0.2);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.terms-footer-note p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 600px;
}

/* Light mode terms */
body:not(.dark) .terms-section {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body:not(.dark) .terms-section h3,
body:not(.dark) .terms-section p,
body:not(.dark) .terms-section ul li {
    color: #333;
}

body:not(.dark) .terms-intro {
    background: rgba(255, 180, 0, 0.08);
}

body:not(.dark) .terms-footer-note {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body:not(.dark) .terms-footer-note p {
    color: #555;
}

body:not(.dark) .terms-meta {
    color: #666;
}

@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-section {
        padding: 20px 18px;
    }

    .terms-intro {
        padding: 16px 18px;
    }
}

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

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-container {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 25, 0.98);
        padding: 20px;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 180, 0, 0.1);
    }

    .language-menu {
        width: 100%;
        margin-top: 12px;
    }

    .language-toggle {
        width: 100%;
    }

    .language-options {
        position: static;
        margin-top: 10px;
        width: 100%;
        box-shadow: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-4px);
        transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
        pointer-events: none;
    }

    .language-menu.open .language-options {
        max-height: 220px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

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

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 35px;
    }

    .features,
    .about-page,
    .services-section,
    .location-section,
    .booking-section {
        padding: 40px 20px;
    }

    .about-hero-panel,
    .about-leadership-panel,
    .about-facts-panel,
    .about-story-card,
    .executive-profile {
        border-radius: 22px;
    }

    .about-section-heading h2,
    .about-story-card h2,
    .about-story-card h3,
    .executive-body h3 {
        font-size: 1.7rem;
    }

    .services-section h1,
    .about-section-heading h2,
    .location-section h1,
    .booking-section h1 {
        font-size: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    main {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        display: block;
        margin-bottom: 15px;
    }

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

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

    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-panel {
        gap: 20px;
        padding: 18px;
    }

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

    .about-subtitle,
    .about-intro,
    .about-story-card p,
    .about-facts-intro,
    .executive-related-label {
        font-size: 0.96rem;
    }

    .about-image-frame {
        min-height: 220px;
        max-height: 260px;
    }

    .about-meta-card,
    .about-fact,
    .executive-meta-inline span,
    .executive-profile {
        padding: 14px 15px;
    }

    .about-story-card,
    .about-leadership-panel,
    .about-facts-panel {
        padding: 18px;
    }
}
