/*
Theme Name: Linda Custom
Theme URI: https://linda-custom.com
Author: Antigravity Custom Themes
Author URI: https://antigravity.ai
Description: A chic, high-end resume and professional portfolio WordPress theme. Features customizable experience sections, credentials, optional images, collapsible bulleted achievements, full HTML support in excerpts, 5-item skills/highlights banner, perfectly centered full-width About & Contact pages, and refined typography.
Version: 1.1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: resume, portfolio, two-columns, custom-menu, featured-images, responsive-layout, clean, modern, minimalist
Text Domain: linda-custom
*/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  
  --color-bg: #ffffff;
  --color-bg-alt: #fcfcfc;
  --color-banner-bg: #e6f0f4;
  --color-text-main: #2b2b2b;
  --color-text-muted: #575757;
  --color-text-light: #888888;
  --color-accent: #93B8C0;
  --color-accent-dark: #5a7a81;   /* Hex: #5a7a81 */
  --color-accent-hover: #486369;
  --color-border: #dbe7ec;
  --color-border-light: #f1f5f9;
  
  --max-width: 1160px;
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-full: 9999px;
  --shadow-subtle: 0 2px 12px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--color-accent-dark);
}

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

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.25rem 0;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Wide Container on About and Contact pages */
.is-about-template .container,
.is-contact-template .container,
.is-fullwidth-custom-page .container {
  max-width: 1240px;
}

/* Ensure zero sidebar offset on full-width custom pages */
.is-about-template,
.is-contact-template,
.is-fullwidth-custom-page,
.page-template-page-about,
.page-template-page-contact {
  overflow-x: hidden;
}

body.is-about-template .site-content-layout,
body.is-contact-template .site-content-layout,
body.is-fullwidth-custom-page .site-content-layout,
body.page-template-page-about .site-content-layout,
body.page-template-page-contact .site-content-layout {
  display: block !important;
  grid-template-columns: none !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

/* Centered Full-Width Main Container for About and Contact */
.site-content-fullwidth {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ==========================================================================
   1. TOP NAVIGATION BAR (LEFT-ALIGNED ON COLORED BAR)
   ========================================================================== */
.top-bar {
  background-color: var(--color-banner-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.65rem 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.top-nav,
.top-nav div,
.top-nav ul,
.top-nav-list,
.menu-header-menu-container,
.menu-header-menu-container > ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 2.2rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.top-nav li,
.top-nav-list li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  white-space: nowrap !important;
}

.top-nav a,
.top-nav li a {
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
  display: inline-block;
  white-space: nowrap;
}

.top-nav a::after,
.top-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-dark);
  transition: var(--transition);
}

.top-nav a:hover::after,
.top-nav li.current-menu-item a::after,
.top-nav .active a::after {
  width: 100%;
}

.top-actions {
  position: absolute;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-links a {
  color: #444444;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.search-trigger {
  background: none;
  border: none;
  cursor: pointer;
  color: #444444;
  font-size: 0.85rem;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.search-trigger:hover {
  color: var(--color-accent-dark);
}

/* ==========================================================================
   2. BRANDING HEADER
   ========================================================================== */
.site-branding {
  text-align: center;
  padding: 2.2rem 1rem 1.6rem;
}

.brand-script {
  font-family: var(--font-script);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.0;
  color: #222222;
  margin-bottom: 0.15rem;
  display: block;
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #333333;
  margin-left: 0.42em;
  padding-top: 5px;
  display: block;
}

/* ==========================================================================
   3. HIGHLIGHTS & TOP SKILLS HERO BANNER (5 CIRCLES & PROPORTIONAL BOX)
   ========================================================================== */
.destinations-hero {
  background-color: var(--color-banner-bg);
  border-radius: var(--radius-sm);
  padding: 1.6rem 2.2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.destinations-left {
  flex: 0 0 auto;
  min-width: 175px;
  text-align: left;
}

.destinations-title {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333333;
  line-height: 1.35;
}

.destinations-subtitle {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: #444444;
  margin-top: 0.1rem;
  display: block;
}

.destinations-grid {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.destination-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  cursor: pointer;
  position: relative;
}

.destination-avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  background-color: #ffffff;
}

.destination-item:hover .destination-avatar-wrap {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.destination-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333333;
  text-align: center;
  transition: var(--transition);
}

.destination-item:hover .destination-name {
  color: var(--color-accent-dark);
}

.destinations-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.btn-pill {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.35rem;
  border-radius: 2px;
  background-color: var(--color-accent);
  color: #111111 !important; /* Black font */
  text-align: center;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pill:hover {
  background-color: #82a8b0;
  color: #000000 !important;
  transform: translateY(-1px);
}

.btn-pill-secondary {
  background-color: var(--color-accent);
  color: #111111 !important; /* Black font */
}

/* Skill Description Popup Modal */
.skill-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.skill-modal.active {
  opacity: 1;
  visibility: visible;
}

.skill-modal-box {
  background: #ffffff;
  padding: 2.2rem;
  max-width: 540px;
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: center;
}

.skill-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #666666;
}

.skill-modal-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 0.85rem;
}

.skill-modal-desc {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444444;
  text-align: left;
}

/* ==========================================================================
   4. TWO-COLUMN MAIN CONTENT & SIDEBAR (RESUME LAYOUT)
   ========================================================================== */
.site-content-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.main-feed {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  width: 100%;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--color-border-light);
  width: 100%;
}

.post-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.post-featured-image {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.post-featured-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.post-header {
  text-align: left;
  margin-bottom: 0.35rem;
}

.post-category {
  font-family: var(--font-heading);
  font-size: 0.84rem !important;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a7a81 !important;   /* Hex: #5a7a81 */
  margin-bottom: 0.2rem;
  display: block;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #222222;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.post-meta,
.entry-date {
  font-family: var(--font-body);
  font-size: 1.15rem !important;
  font-style: italic;
  color: #575757 !important;
  margin-bottom: 0.4rem;
  display: block;
}

.post-excerpt {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.55;
  color: #333333;
  width: 100%;
  margin-top: 0.15rem;
}

.post-excerpt p {
  margin-bottom: 0.35rem;
}

.post-excerpt a {
  color: #5a7a81 !important;
  text-decoration: underline !important;
  font-weight: 600;
  transition: var(--transition);
}

.post-excerpt a:hover {
  color: #3c5257 !important;
}

.post-excerpt hr {
  border: none !important;
  border-top: 1.5px solid #555555 !important;
  margin: 0.65rem 0 !important;
  width: 100% !important;
}

.post-excerpt ul,
.resume-bullets {
  list-style: disc outside !important;
  margin: 0.15rem 0 0.35rem 1.25rem !important;
  padding: 0 !important;
  width: calc(100% - 1.25rem) !important;
}

.post-excerpt ol {
  list-style: decimal outside !important;
  margin: 0.15rem 0 0.35rem 1.25rem !important;
  padding: 0 !important;
  width: calc(100% - 1.25rem) !important;
}

.post-excerpt li,
.resume-bullets li {
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.55;
  color: #333333;
  margin-top: 0 !important;
  margin-bottom: 0.8px !important;
  padding-left: 0.2rem;
  text-align: left;
}

.resume-collapsible-content {
  margin-top: 0.8px;
}

.resume-expand-btn {
  background: none;
  border: none;
  color: #5a7a81 !important; /* Hex: #5a7a81 */
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2rem 0;
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.resume-expand-btn span,
.expand-text,
.collapse-text {
  color: #5a7a81 !important;
}

.resume-expand-btn:hover,
.resume-expand-btn:hover span {
  color: #3c5257 !important;
  text-decoration: underline;
}

/* ==========================================================================
   5. SIDEBAR PROFILE SECTION (20% LARGER IMAGE & 20% LARGER TEXT)
   ========================================================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.widget-title {
  font-family: var(--font-heading);
  font-size: 0.86rem !important; /* +20% */
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333333;
  text-align: center;
  margin-bottom: 1.15rem;
}

.widget-about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-avatar {
  width: 202px !important;
  height: 202px !important;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.95rem;
  background-color: #f1f5f9;
  border: 1px solid #d0dbe0;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.09);
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-signature {
  font-family: var(--font-script);
  font-size: 3.4rem !important; /* +20% */
  color: #222222;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.about-tagline {
  font-family: var(--font-body);
  font-size: 1.25rem !important; /* +20% */
  font-style: italic;
  color: #555555;
  margin-bottom: 0.85rem;
}

.about-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111 !important; /* Black font */
  font-size: 0.95rem;
  transition: var(--transition);
}

.about-contact-icon:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #000000 !important;
}

/* Location Section */
.widget-location-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location-name {
  font-family: var(--font-body);
  font-size: 1.32rem !important; /* +20% */
  font-style: italic;
  color: #333333;
  margin-bottom: 0.85rem;
}

.location-map-graphic {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

/* Visited / Skills List (Plain text, no links, no hover highlights) */
.visited-countries-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 1.15rem !important; /* +20% */
  font-style: italic;
  color: #3a3a3a !important;
  text-align: center;
  list-style: none;
}

.visited-countries-list li {
  color: #3a3a3a !important;
  cursor: default !important;
  transition: none !important;
  text-decoration: none !important;
}

.visited-countries-list li:hover {
  color: #3a3a3a !important;
  text-decoration: none !important;
}

/* Subscribe Section */
.subscribe-box {
  background-color: var(--color-banner-bg);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.subscribe-text {
  font-family: var(--font-body);
  font-size: 1.15rem !important; /* +20% */
  color: #444444;
  margin-bottom: 0.85rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.subscribe-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background-color: #ffffff;
  color: var(--color-text-main);
  outline: none;
}

.subscribe-btn {
  width: 100%;
  padding: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background-color: var(--color-accent);
  color: #111111 !important; /* Black font */
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background-color: #82a8b0;
  color: #000000 !important;
}

/* ==========================================================================
   6. ABOUT PAGE FULL-WIDTH LAYOUT (EXPANDED & PERFECTLY CENTERED)
   ========================================================================== */
.about-page-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 4rem !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.about-hero-section {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1160px;
  margin: 3.5rem auto 5rem;
  width: 100%;
}

.about-collage {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  height: 420px;
}

.about-img-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 290px;
  height: 360px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-img-arched {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 260px;
  height: 360px;
  object-fit: cover;
  border-radius: 130px 130px 0 0;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.about-bio-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.about-greeting {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 0.25rem;
}

.about-name-script {
  font-family: var(--font-script);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.05;
  color: #222222;
  margin-bottom: 1.4rem;
}

.about-bio-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.85;
  color: #444444;
}

.about-bio-text p {
  margin-bottom: 1.2rem;
}

.about-facts-section {
  background-color: var(--color-banner-bg);
  padding: 4.5rem 0;
  margin: 3.5rem 0;
  width: 100%;
}

.facts-grid-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.facts-left-col {
  display: flex;
  flex-direction: column;
}

.facts-main-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2b2b2b;
  margin-bottom: 2rem;
}

.facts-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.facts-card {
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.6rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.facts-prompt {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #333333;
}

.facts-answer {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-style: italic;
  color: #777777;
}

.facts-right-img-wrap {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.facts-right-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.about-going-section {
  text-align: center;
  max-width: 880px;
  margin: 5rem auto 4.5rem;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-going-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
}

.about-going-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 2rem;
}

.btn-pill-going {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2.4rem;
  border-radius: 2px;
  background-color: var(--color-accent);
  color: #111111 !important; /* Black font */
  text-align: center;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pill-going:hover {
  background-color: #82a8b0;
  color: #000000 !important;
}

/* ==========================================================================
   7. CONTACT ME PAGE FULL-WIDTH LAYOUT (EXPANDED & PERFECTLY CENTERED)
   ========================================================================== */
.contact-page-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.contact-hero-banner {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  background-color: #dbe7ec;
}

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

.contact-card-container {
  width: 100%;
  max-width: 860px;
  margin: -190px auto 5.5rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.contact-card {
  background-color: var(--color-banner-bg);
  padding: 3.5rem 4.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 100%;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 0.95rem;
}

.contact-card-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: #555555;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

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

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  background-color: #ffffff;
  border: 1px solid #d5e2e8;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: #222222;
  outline: none;
  transition: var(--transition);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #93B8C0;
  box-shadow: 0 0 0 3px rgba(147, 184, 192, 0.2);
}

.contact-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-submit-wrap {
  text-align: center;
  margin-top: 0.75rem;
}

.contact-submit-btn {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2.8rem;
  border-radius: 2px;
  background-color: var(--color-accent);
  color: #111111 !important; /* Black font */
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.contact-submit-btn:hover {
  background-color: #82a8b0;
  color: #000000 !important;
}

.contact-success-msg {
  background-color: #d4edda;
  color: #155724;
  padding: 0.95rem;
  border-radius: 2px;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: none;
}

/* ==========================================================================
   8. 4-COLUMN FOOTER (MATCHING CONTACT SCREENSHOT)
   ========================================================================== */
.site-footer-4col {
  background-color: #f7fafb;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2.5rem;
  width: 100%;
}

.site-footer-4col .container {
  max-width: 1240px;
}

.footer-4col-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.footer-col-1 .footer-brand-title {
  font-family: var(--font-script);
  font-size: 3.4rem;
  color: #222222;
  line-height: 1.0;
  margin-bottom: 0.2rem;
  display: block;
}

.footer-col-1 .footer-brand-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #333333;
  display: block;
  margin-bottom: 0.95rem;
}

.footer-col-1 .footer-tagline-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: #666666;
  line-height: 1.55;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 1.35rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links-list a {
  color: #555555;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--color-accent-dark);
}

.footer-col-4 {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-col-4 .social-links {
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-btn-link {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  background-color: var(--color-accent);
  color: #111111 !important; /* Black font */
  border-radius: 2px;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.footer-btn-link:hover {
  background-color: #82a8b0;
  color: #000000 !important;
}

.footer-bottom-copyright {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* Default simple footer */
.site-footer {
  border-top: 1px solid var(--color-border-light);
  padding: 2.8rem 0 2rem;
  text-align: center;
  background-color: var(--color-bg);
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: #222222;
  margin-bottom: 0.85rem;
  display: block;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.footer-nav a {
  color: #444444;
  font-weight: 500;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--color-accent-dark);
}

.copyright-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #82a8b0;
}

/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-content {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  position: relative;
}

.search-modal-close {
  position: absolute;
  top: -2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333333;
}

.search-modal-form {
  display: flex;
  border-bottom: 2px solid #222222;
}

.search-modal-input {
  width: 100%;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  border: none;
  background: transparent;
  outline: none;
  color: #222222;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #333333;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .destinations-hero {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.5rem;
  }
  
  .destinations-left {
    text-align: center;
  }

  .destinations-grid {
    flex-wrap: wrap;
    gap: 1.4rem;
  }

  .destinations-actions {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .about-hero-section,
  .facts-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-collage {
    max-width: 440px;
  }
}

@media (max-width: 992px) {
  .site-content-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .sidebar {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-4col-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-nav,
  .top-nav div,
  .top-nav ul,
  .top-nav-list {
    display: none !important;
  }

  .top-nav.mobile-active,
  .top-nav.mobile-active ul {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column !important;
    padding: 1.5rem;
    gap: 1rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 90;
  }

  .mobile-nav-toggle {
    display: block;
  }
  
  .brand-script {
    font-size: 3.5rem;
  }
  
  .brand-subtitle {
    font-size: 0.7rem;
  }

  .about-collage {
    max-width: 320px;
    height: 280px;
  }

  .about-img-bg {
    width: 190px;
    height: 240px;
  }

  .about-img-arched {
    width: 170px;
    height: 240px;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

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

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