/*
Theme Name: Tower London
Theme URI: https://towerlondon.co.uk
Author: Tower London Ltd
Author URI: https://towerlondon.co.uk
Description: Professional corporate theme for Tower London Ltd - PR, Management Consultancy & Advertising Agency
Version: 1.0
License: Proprietary
Text Domain: tower-london
*/

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1A1A2E;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --cream: #FAFAF7;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #666666;
    --border: #E5E5E0;
    --section-bg: #F3F3EE;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--gold-light);
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1.2rem;
    color: var(--text);
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 90px 0;
}

.section--dark {
    background-color: var(--navy);
    color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: rgba(255,255,255,0.80);
}

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

.section__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section__title {
    margin-bottom: 1.2rem;
}

.section__intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 640px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.text-center .section__intro {
    margin-left: auto;
    margin-right: auto;
}

.gold { color: var(--gold); }

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.btn--primary {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn--outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline-dark:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* ========================================
   TOP MARQUEE BAND
======================================== */
.top-band {
    background: var(--gold);
    overflow: hidden;
    white-space: nowrap;
    height: 32px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}
.top-band__track {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    animation: marquee 28s linear infinite;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--navy);
}
.top-band .sep {
    opacity: 0.45;
    font-size: 0.6rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 32px; /* below marquee band */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: all 0.3s ease;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background-color: var(--gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

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

.logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background-color: rgba(201,168,76,0.08);
}

.nav-cta {
    background-color: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.5rem 1.25rem !important;
}

.nav-cta:hover {
    background-color: var(--gold-light) !important;
    color: var(--navy) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

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

/* ========================================
   SHOWCASE SLIDER
======================================== */
section.showcase {
    position: relative !important;
    width: 100% !important;
    height: 82vh !important;
    min-height: 560px !important;
    overflow: hidden !important;
    background: #060612 !important;
    padding: 0 !important;
    margin: 0 !important;
}
section.showcase .showcase__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    height: 100% !important;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    margin: 0 !important;
    padding: 0 !important;
}
section.showcase .showcase__slide {
    min-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 0 !important;
    margin: 0 !important;
}
section.showcase .showcase__overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        105deg,
        rgba(6, 6, 18, 0.88) 0%,
        rgba(6, 6, 18, 0.65) 50%,
        rgba(6, 6, 18, 0.30) 100%
    ) !important;
    z-index: 1;
}
.showcase__content {
    position: absolute;
    z-index: 2;
    bottom: 14%;
    left: 7%;
    max-width: 580px;
    animation: showcaseFadeIn 0.9s ease forwards;
}
@keyframes showcaseFadeIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.showcase__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border-left: 2px solid var(--gold);
    padding-left: 0.75rem;
    margin-bottom: 1.1rem;
}
.showcase__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.07;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.showcase__headline em {
    font-style: italic;
    color: var(--gold);
}
.showcase__sub {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    margin-bottom: 1.8rem;
    max-width: 460px;
}
.showcase__cta {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.showcase__cta:hover {
    background: var(--gold);
    color: var(--navy);
}
.showcase__location {
    position: absolute;
    z-index: 2;
    bottom: 2.5rem;
    right: 3rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* Arrows */
.showcase__arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.showcase__arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}
.showcase__arrow--prev { left: 2rem; }
.showcase__arrow--next { right: 2rem; }

/* Dots */
.showcase__dots {
    position: absolute;
    z-index: 10;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}
.showcase__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.showcase__dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
}

/* Progress bar */
.showcase__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--gold);
    z-index: 10;
    transition: width 0s linear;
}

/* ========================================
   HERO
======================================== */
.hero {
    background-color: var(--navy);
    background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1800&q=80&fit=crop');
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Dark overlay — yazıları okunur kılar */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 6, 18, 0.82) 0%,
        rgba(6, 6, 18, 0.70) 50%,
        rgba(6, 6, 18, 0.55) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--gold);
}

.hero__title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero__title em {
    font-style: normal;
    color: var(--gold);
}

.hero__text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ========================================
   SERVICES CARDS
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26,26,46,0.12);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background-color: rgba(201,168,76,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.03em;
}

.service-card__link:hover {
    gap: 0.7rem;
}

/* ========================================
   WHY US
======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
}

.feature-item__num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    width: 3rem;
}

.feature-item__content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.feature-item__content p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CTA BAND
======================================== */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, #0d0d1a 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-band p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-band .btn-group {
    justify-content: center;
}

/* ========================================
   PAGE HERO (inner pages)
======================================== */
.page-hero {
    background-color: var(--navy);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-hero__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-hero__label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gold);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.8;
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-story__image {
    background-color: var(--navy);
    border-radius: 6px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-story__image::before {
    content: 'TOWER\ALONDRA';
    color: rgba(201,168,76,0.08);
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    text-align: center;
    line-height: 1;
    white-space: pre;
}

.about-story__image-inner {
    width: 120px;
    height: 120px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 32px rgba(26,26,46,0.08);
}

.value-card__icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.value-card p {
    font-size: 0.93rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   SERVICES PAGE
======================================== */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.service-detail__inner.reverse {
    grid-template-columns: 1.4fr 1fr;
}

.service-detail__inner.reverse .service-detail__sidebar {
    order: 2;
}

.service-detail__inner.reverse .service-detail__content {
    order: 1;
}

.service-detail__sidebar {
    position: sticky;
    top: 100px;
}

.service-detail__num {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.service-detail__icon-box {
    background-color: var(--navy);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-detail__icon-box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail__icon-box h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-detail__icon-box p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.service-detail__img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 220px;
    display: block;
    margin-top: 1rem;
}

.service-list {
    margin: 2rem 0;
}

.service-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    flex-shrink: 0;
}

.service-list li:first-child {
    border-top: 1px solid var(--border);
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.contact-info p, .contact-info address {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-form .subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background-color: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    background-color: var(--white);
}

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

.form-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.transport-info {
    background-color: var(--section-bg);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.transport-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.transport-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   MAP PLACEHOLDER
======================================== */
.map-placeholder {
    height: 320px;
    background-color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    border: 1px solid rgba(201,168,76,0.2);
}

.map-placeholder p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-align: center;
}

.map-placeholder__pin {
    font-size: 2.5rem;
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}
.legal-content h2:first-of-type {
    margin-top: 1rem;
}
.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}
.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.4rem;
    line-height: 1.7;
}
.legal-content a {
    color: var(--gold);
    text-decoration: underline;
}
.legal-meta {
    background: var(--gray);
    border-left: 3px solid var(--gold);
    padding: 0.75rem 1.25rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem !important;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background-color: #0d0d1a;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.footer__main {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer__brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer__col h5 {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    font-family: 'Montserrat', sans-serif;
}

.footer__col ul li {
    margin-bottom: 0.6rem;
}

.footer__col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__col ul li a:hover {
    color: var(--gold);
}

.footer__col address {
    font-style: normal;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    margin: 0;
}

.footer__bottom a {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

.footer__bottom a:hover {
    color: var(--gold);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-detail__inner,
    .service-detail__inner.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-detail__inner.reverse .service-detail__sidebar,
    .service-detail__inner.reverse .service-detail__content {
        order: unset;
    }
    .service-detail__sidebar {
        position: static;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--navy);
        padding: 1rem 2rem 2rem;
        border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .main-nav.open {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .main-nav a {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
    }
    .mobile-toggle {
        display: flex;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer__main {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}
