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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.3;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: #122b40;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo text treatment since image is missing */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-family: Roboto, Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
}

.logo-text-sub {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #a8c8d8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #255625 0%, #3a7a3a 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.header-tagline {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.header-tagline strong {
  display: block;
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.header-tagline span {
  font-size: 13px;
  color: #a8c8d8;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid #dadcb7;
  padding-left: 20px;
}

.header-phone-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(10);
  opacity: 0.85;
}

.header-phone-info {
  text-align: right;
}

.phone-number-link {
  font-family: 'Roboto Condensed', Roboto, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  display: block;
}

.phone-number-link:hover {
  color: #a8d8ea;
}

.header-location {
  font-size: 11px;
  color: #a8c8d8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  background: #1a3a52;
  border-top: 1px solid #1b6d85;
  border-bottom: 2px solid #255625;
  position: relative;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  color: #e8e8e8;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 14px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-menu li a.active {
  border-bottom: 2px solid #255625;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  background: #1a3a52;
  border-top: 1px solid #255625;
}

.nav-mobile-menu li a {
  display: block;
  color: #e8e8e8;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-mobile-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-mobile-menu.open {
  display: block;
}

/* =============================================
   HERO / BANNER
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #122b40 0%, #1b6d85 40%, #255625 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,43,64,0.7) 0%, rgba(37,86,37,0.5) 100%);
  z-index: 1;
}

/* Decorative farm scene using CSS */
.hero-farm-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, #1b6d85 0%, #269abc 60%, #a8d8ea 100%);
}

.hero-hills {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, #255625 0%, #3a7a3a 60%, #4a9a4a 100%);
  border-radius: 60% 80% 0 0 / 30% 40% 0 0;
}

.hero-hills::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to bottom, #2b542c 0%, #3a7a3a 100%);
  border-radius: 50% 80% 0 0 / 40% 60% 0 0;
}

.hero-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, #3d5a2e 0%, #4a6e38 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-content .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  margin-bottom: 28px;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: #255625;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  border: 2px solid #255625;
}

.btn-primary-hero:hover {
  background: #2b542c;
  color: #fff;
}

.btn-outline-hero {
  background: transparent;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* =============================================
   GALLERY STRIP (image placeholders)
   ============================================= */
.gallery-strip {
  display: flex;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.gallery-strip-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-strip-item:nth-child(1) {
  background: linear-gradient(135deg, #255625 0%, #3a7a3a 100%);
}

.gallery-strip-item:nth-child(2) {
  background: linear-gradient(135deg, #122b40 0%, #1b6d85 100%);
}

.gallery-strip-item:nth-child(3) {
  background: linear-gradient(135deg, #4a3800 0%, #8a6500 100%);
}

.gallery-strip-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.gallery-strip-item:hover::before {
  background: rgba(0,0,0,0.15);
}

.gallery-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.gallery-strip-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 48px;
  z-index: 2;
  opacity: 0.7;
}

/* =============================================
   GREEN BAR / DIVIDER
   ============================================= */
.green-bar {
  background: linear-gradient(to right, #255625, #2b542c, #255625);
  height: 8px;
  width: 100%;
}

/* =============================================
   ABOUT / MCP SECTION
   ============================================= */
.mcp-section {
  background: #f4f6f0;
  padding: 60px 20px;
}

.mcp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.mcp-text {
  flex: 1;
  min-width: 280px;
}

.mcp-text .section-label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #255625;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.mcp-text h2 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #122b40;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mcp-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mcp-text .btn-learn-more {
  display: inline-block;
  background: #255625;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
  transition: background 0.2s;
}

.mcp-text .btn-learn-more:hover {
  background: #2b542c;
}

.mcp-image-col {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 340px;
}

.mcp-img-placeholder {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.mcp-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.mcp-img-placeholder span {
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mcp-img-1 {
  background: linear-gradient(135deg, #3a5a20 0%, #255625 100%);
  grid-column: 1;
  grid-row: 1 / 3;
}

.mcp-img-2 {
  background: linear-gradient(135deg, #5a3a10 0%, #8a6510 100%);
}

.mcp-img-3 {
  background: linear-gradient(135deg, #122b40 0%, #1b6d85 100%);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: #122b40;
  color: #fff;
  padding: 40px 20px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-family: Roboto, Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #a8d8ea;
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

/* =============================================
   SCP - SERVICE CATEGORY PANELS
   ============================================= */
.scp-section {
  background: #fff;
  padding: 70px 20px;
}

.scp-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-center .section-label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #255625;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-header-center h2 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #122b40;
  line-height: 1.2;
}

.section-header-center p {
  font-size: 16px;
  color: #666;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scp-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.scp-card {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
}

.scp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.scp-card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.8);
}

.scp-card-image-sheep {
  background: linear-gradient(135deg, #2b542c 0%, #3d7a3a 50%, #a8c87a 100%);
}

.scp-card-image-cattle {
  background: linear-gradient(135deg, #5a3a10 0%, #8a6530 50%, #c8a060 100%);
}

.scp-card-image-farmstay {
  background: linear-gradient(135deg, #122b40 0%, #1b6d85 50%, #269abc 100%);
}

.scp-card-icon-large {
  font-size: 72px;
  opacity: 0.6;
}

.scp-card-image-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}

.scp-card-body {
  padding: 24px;
}

.scp-card-body h3 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #122b40;
  margin-bottom: 10px;
}

.scp-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.scp-card-btn {
  display: inline-block;
  background: #255625;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.scp-card-btn:hover {
  background: #2b542c;
  color: #fff;
}

/* =============================================
   PHOTO GALLERY GRID
   ============================================= */
.gallery-section {
  background: #f4f6f0;
  padding: 60px 20px;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.photo-grid-item {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s;
}

.photo-grid-item:hover {
  opacity: 0.85;
}

.photo-grid-item:nth-child(1) { background: linear-gradient(135deg, #255625, #3a7a3a); }
.photo-grid-item:nth-child(2) { background: linear-gradient(135deg, #5a3a10, #8a6510); }
.photo-grid-item:nth-child(3) { background: linear-gradient(135deg, #2b3a5a, #1b6d85); }
.photo-grid-item:nth-child(4) { background: linear-gradient(135deg, #3a5a20, #255625); }
.photo-grid-item:nth-child(5) { background: linear-gradient(135deg, #122b40, #1a4060); }
.photo-grid-item:nth-child(6) { background: linear-gradient(135deg, #6a4010, #a06020); }
.photo-grid-item:nth-child(7) { background: linear-gradient(135deg, #204030, #255625); }
.photo-grid-item:nth-child(8) { background: linear-gradient(135deg, #1b5a70, #269abc); }

.photo-grid-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 10px;
  text-align: center;
  padding: 8px 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transform: translateY(100%);
  transition: transform 0.2s;
}

.photo-grid-item:hover .photo-grid-caption {
  transform: translateY(0);
}

/* =============================================
   CONTACT / FORM SECTION
   ============================================= */
.form-section {
  position: relative;
  padding: 70px 20px;
  background: #122b40;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/murray-downs-farm-form-bg-2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.form-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.form-header .section-label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #a8d8ea;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.form-header h2 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.form-header p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-top: 10px;
}

.contact-form {
  background: rgba(255,255,255,0.97);
  border-radius: 6px;
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #222;
  background: #fff;
  width: 100%;
  -webkit-appearance: none;
  line-height: normal;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #255625;
  box-shadow: 0 0 0 2px rgba(37,86,37,0.15);
}

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

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.btn-submit {
  background: #2b1c68;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 48px;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  max-width: 300px;
}

.btn-submit:hover {
  background: #3d2a90;
}

/* =============================================
   EXTRA INFO SECTION
   ============================================= */
.extra-section {
  background: #fff;
  padding: 60px 20px;
}

.extra-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.extra-col {
  flex: 1;
  min-width: 260px;
}

.extra-col h3 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #122b40;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #255625;
}

.extra-col p,
.extra-col li {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.extra-col ul {
  list-style: none;
  padding: 0;
}

.extra-col ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.extra-col ul li::before {
  content: '✓';
  color: #255625;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.extra-col ul li a {
  color: #255625;
  font-weight: 600;
  font-size: 14px;
}

.extra-col ul li a:hover {
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #202020;
  color: #aaa;
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-brand {
  flex: 1.5;
  min-width: 220px;
}

.footer-logo-text {
  font-family: Roboto, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.footer-logo-sub {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-flag {
  width: 30px;
  height: auto;
  border-radius: 2px;
  vertical-align: middle;
}

.footer-col {
  flex: 1;
  min-width: 160px;
}

.footer-col h4 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #888;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: #a8d8ea;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12px;
  color: #555;
}

.footer-copy a {
  color: #666;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #555;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #aaa;
}

/* =============================================
   MOBILE FOOTER
   ============================================= */
.mobile-footer {
  display: none;
  background: #202020;
  padding: 20px;
  border-top: 1px solid #333;
}

/* =============================================
   RESPONSIVE — TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================
   RESPONSIVE — MOBILE (<768px)
   ============================================= */
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .header-top {
    justify-content: space-between;
  }

  .header-tagline {
    display: none;
  }

  .header-contact {
    border-left: none;
    padding-left: 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content .hero-sub {
    font-size: 15px;
  }

  .hero-section {
    min-height: 320px;
  }

  .gallery-strip {
    height: 140px;
  }

  .gallery-strip-icon {
    font-size: 32px;
  }

  .gallery-strip-label {
    font-size: 10px;
    padding: 6px;
  }

  .mcp-image-col {
    display: none;
  }

  .stats-inner {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    padding: 24px 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .scp-cards {
    flex-direction: column;
    align-items: center;
  }

  .scp-card {
    max-width: 100%;
    width: 100%;
  }

  .extra-inner {
    flex-direction: column;
  }
}

/* =============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 54px;
  }

  .gallery-strip {
    height: 280px;
  }
}
