  /* ========== RESET & VARIABLES ========== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  @import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

  :root {
    --brand: #5366ad;
    --brand-dark: #3d4f96;
    --dark-bg: #1a1a2e;
    --footer-bg: #111122;
    --text-light: #e8e8e8;
    --text-dark: #222;
    --accent: #c8002c;
    --white: #ffffff;
    --font-heading: 'Exo', sans-serif;
    --font-body: 'Playfair Display', serif;
    --max-w: 1200px;
    --header-h: 80px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-heading);
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
  }

  img { display: block; width: 100%; height: 100%; object-fit: cover; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ========== HEADER ========== */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(83,102,173,0.3);
    transition: background 0.3s;
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }

  .logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
  }

  nav ul {
    display: flex;
    gap: 8px;
  }

  nav ul li a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  nav ul li a:hover { color: #fff; }
  nav ul li a:hover::after { transform: scaleX(1); }
  nav ul li.active a { color: var(--brand); }

  /* ========== HERO SLIDER ========== */
  .hero {
    position: relative;
    width: 100%;
    padding-top: calc(var(--header-h) + 0px);
    background: var(--dark-bg);
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 8s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.2) 0%, rgba(26,26,46,0.5) 100%);
  }

  /* ========== INTRO TEXT ========== */
  .intro-section {
    background: #fff;
    text-align: center;
    padding: 60px 30px 40px;
  }

  .intro-section h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--brand);
    /* letter-spacing: 3px; */
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .intro-section p {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 28px);
    color: #444;
    /* font-style: italic; */
    font-weight: 600;
    text-align: center;
  }

  /* ========== TWO-COL SECTION ========== */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }

  .two-col.reverse { direction: rtl; }
  .two-col.reverse > * { direction: ltr; }

  .two-col .img-side {
    overflow: hidden;
    position: relative;
  }

  .two-col .img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .two-col .img-side:hover img { transform: scale(1.04); }

  .two-col .text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 80px;
    background: #fff;
  }

  .two-col .text-side h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .two-col .text-side h2 strong {
    font-weight: 900;
    display: block;
  }

  .two-col .text-side p {
    font-size: clamp(16px, 1.8vw, 22px);
    color: #444;
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: var(--font-body);
  }

  /* ========== BUTTON ========== */
  .btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
  }

  .btn:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(83,102,173,0.35);
  }

  /* ========== IMAGE GRID (2 cols side by side) ========== */
  .img-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .img-grid-2 .img-cell {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
  }

  .img-grid-2 .img-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .img-grid-2 .img-cell:hover img { transform: scale(1.05); }

  /* ========== FULL WIDTH BANNER IMAGE ========== */
  .banner-image {
    width: 100%;
    aspect-ratio: 16/6;
    overflow: hidden;
    position: relative;
  }

  .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }

  /* ========== CENTER LOGO SECTION ========== */
  .center-logo {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background: #fff;
  }

  .center-logo img {
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* ========== DIVIDER ========== */
  .divider {
    height: 1px;
    background: #e8e8e8;
    margin: 0;
  }

  /* ========== DARK FOOTER GRID ========== */
  .footer-info {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0;
  }

  .footer-info .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .footer-col h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-col p, .footer-col li, .footer-col a {
    font-size: 14px;
    color: #bbb;
    line-height: 1.9;
  }

  .footer-col a:hover { color: var(--brand); }

  .footer-col .hours-item { margin-bottom: 2px; }
  .footer-col .hours-item.closed { color: var(--accent); font-weight: 700; }

  .footer-col .badge-imgs { display: flex; flex-direction: column; gap: 12px; }
  .footer-col .badge-imgs img {
    max-width: 160px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
  }

  .footer-col .recommended-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ========== SOCKET / COPYRIGHT ========== */
  .socket {
    background: var(--footer-bg);
    padding: 20px 30px;
    text-align: center;
    font-size: 13px;
    color: #666;
    font-family: var(--font-heading);
    letter-spacing: 1px;
  }

  /* ========== CALL NOW BUTTON (mobile) ========== */
  @media (max-width: 650px) {
    #callnow {
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      bottom: 20px; right: 20px;
      width: 60px; height: 60px;
      border-radius: 50%;
      background: #00bb00;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 9999;
    }

    #callnow svg { width: 28px; height: 28px; fill: white; }
  }

  @media (min-width: 651px) { #callnow { display: none; } }

  /* ========== SCROLL TO TOP ========== */
  #scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
  }

  #scroll-top.visible { opacity: 1; pointer-events: all; }
  #scroll-top:hover { transform: translateY(-3px); }

  /* ========== COOKIE BAR ========== */
  #cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(26,26,46,0.97);
    color: #ccc;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9998;
    font-size: 13px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

  #cookie-bar.show { transform: translateY(0); }

  #cookie-bar button {
    background: var(--brand);
    color: white;
    border: none;
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    transition: background 0.2s;
  }

  #cookie-bar button:hover { background: var(--brand-dark); }

  /* ========== MOBILE MENU ========== */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: transform 0.3s, opacity 0.3s;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(26,26,46,0.98);
    padding: 20px 0;
    z-index: 998;
    flex-direction: column;
    border-top: 1px solid rgba(83,102,173,0.3);
  }

  .mobile-nav.open { display: flex; }
  .mobile-nav li a {
    display: block;
    padding: 12px 30px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.2s;
  }

  .mobile-nav li a:hover { color: var(--brand); padding-left: 40px; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }

    .two-col {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .two-col.reverse { direction: ltr; }

    .two-col .img-side { aspect-ratio: 4/3; height: auto; }
    .two-col .text-side { padding: 40px 30px; }

    .img-grid-2 { grid-template-columns: 1fr; }
    .img-grid-2 .img-cell { aspect-ratio: 4/3; }

    .banner-image { aspect-ratio: 16/7; }

    .footer-info .container {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }

  @media (max-width: 600px) {
    .hero-image { aspect-ratio: 4/3; }
    .footer-info .container { grid-template-columns: 1fr; }
    .intro-section { padding: 40px 20px 30px; }
  }

  /* ========== FADE-IN ANIMATION ========== */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }