/* Pleasant Homestay – Master Global Stylesheet */

/************************************
 1. ROOT VARIABLES
************************************/
:root {
  --primary: #2c5530;
  --secondary: #b68d40;
  --light: #f8f9fa;
  --dark: #343a40;
  --gray: #6c757d;
  --white: #ffffff;
  --transition: 0.3s ease;
}

/************************************
 2. GLOBAL RESETS & BASE
************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9f9f9;
  color: var(--dark);
  line-height: 1.6;
}

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

a:hover {
  color: var(--secondary);
}

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

section {
  padding: 80px 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: auto;
}

/************************************
 3. BUTTONS
************************************/
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background: #1e3a22;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: #9a7735;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/************************************
 5. HERO SECTION
************************************/
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hompage-image/home-page-hero.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

/************************************
 6. ABOUT PAGE
************************************/
.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--gray);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/************************************
 7. ROOMS PAGE - UPDATED
************************************/
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
  overflow: hidden;
  height: 200px;
  position: relative;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.room-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.room-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
}

.room-features {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--gray);
}

.room-features i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 0.9rem;
}

.room-info .btn {
  margin-top: auto;
  width: 100%;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.room-title h3 {
  margin-bottom: 5px;
}

.room-title p {
  color: var(--gray);
  font-size: 0.9rem;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.price-period {
  font-size: 0.9rem;
  color: var(--gray);
  text-align: right;
}

.room-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.room-actions .btn {
  flex: 1;
}

/************************************
 8. AMENITIES SECTION - ADDED
************************************/
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  background: rgba(44, 85, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: rgba(182, 141, 64, 0.15);
  transform: scale(1.1);
}

.amenity-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.amenity-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.amenity-card p {
  color: var(--gray);
  line-height: 1.5;
}

/************************************
 9. GALLERY PAGE
************************************/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/************************************
 10. CONTACT PAGE - UPDATED
************************************/
.contact-content {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.1rem;
  text-align: left;
}

.contact-details p {
  color: var(--gray);
  text-align: left;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-top: 30px;
}

/************************************
 CONTACT PAGE RESPONSIVE STYLES
************************************/

/* Tablet and Mobile Breakpoints */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
    gap: 50px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-content {
    gap: 40px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-details {
    width: 100%;
  }

  .contact-details h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .contact-details p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-info h2,
  .contact-form h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .contact-info p {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-item {
    padding: 0 10px;
    margin-bottom: 25px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .contact-details h3 {
    font-size: 1.2rem;
  }

  .contact-details p {
    font-size: 0.95rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* Small mobile devices */
@media (max-width: 400px) {
  .contact-item {
    gap: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-details h3 {
    font-size: 1.1rem;
  }

  .contact-details p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Fix for the business hours section */
.business-hours {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.business-hours h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #eee;
}

.hours-table td {
  padding: 15px 0;
  color: var(--gray);
  text-align: left;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

/* Business hours responsive */
@media (max-width: 768px) {
  .business-hours {
    padding: 25px;
    margin-top: 40px;
  }

  .business-hours h2 {
    font-size: 1.6rem;
  }

  .hours-table td {
    padding: 12px 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .business-hours {
    padding: 20px;
    margin-top: 30px;
  }

  .hours-table td {
    display: block;
    padding: 10px 0;
    width: 100%;
  }

  .hours-table td:first-child {
    font-weight: 700;
    padding-top: 15px;
  }

  .hours-table td:last-child {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .hours-table tr:last-child td:last-child {
    border-bottom: none;
  }
}

/* Additional fix for proper alignment */
.contact-info {
  text-align: left;
}

.contact-info h2 {
  text-align: left;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 2rem;
}

.contact-info > p {
  text-align: left;
  margin-bottom: 30px;
  color: var(--gray);
  line-height: 1.6;
}

/* Make sure these are centered only on mobile */
@media (max-width: 768px) {
  .contact-info {
    text-align: center;
  }

  .contact-info h2 {
    text-align: center;
  }

  .contact-info > p {
    text-align: center;
  }
}

/************************************
 11. LEGAL PAGES
************************************/
.legal-page {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.legal-page h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.legal-page h3 {
  margin-top: 30px;
  color: var(--secondary);
}

/************************************
 12. FOOTER - FIXED OVERLAPPING
************************************/
footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 80px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white); /* Keep original white color */
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  color: var(--white); /* Keep original white color */
}

.footer-logo h3 span {
  color: var(--secondary) !important; /* Force secondary color for span */
}

.footer-logo h3::after {
  display: none;
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-column ul li:hover {
  transform: translateX(5px);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.footer-column ul li i {
  width: 20px;
  color: var(--secondary);
}

.footer-column ul.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-column ul.footer-links li i {
  margin-top: 4px;
  flex-shrink: 0;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
  width: 100%;
}

.copyright p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.copyright a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

.copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

/************************************
 21. RESPONSIVE FIXES FOR FOOTER
************************************/
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-column ul li a {
    justify-content: center;
  }

  .footer-column ul.footer-links li {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 30px 0 20px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
  }

  .footer-logo h3 {
    font-size: 1.3rem;
  }
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--white);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), #1e3a22);
  color: white;
  padding: 150px 0 80px;
  text-align: center;
  margin-top: 70px; /* Adjust based on header height */
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.page-hero .page-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-hero .last-updated {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 10px;
  font-style: italic;
}

/* Breadcrumb navigation */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--secondary);
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 10px;
  opacity: 0.5;
}

.breadcrumb .current-page {
  color: white;
  opacity: 0.8;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
    margin-top: 60px;
  }

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

  .page-hero .page-description {
    font-size: 1rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }

  .breadcrumb {
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
/************************************
 14. LEGAL PAGES CONTENT
************************************/
.legal-content {
  padding: 60px 0;
}

.legal-section {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.legal-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(44, 85, 48, 0.1);
}

.legal-section h3 {
  color: var(--secondary);
  margin: 25px 0 15px;
}

.legal-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-section li {
  margin-bottom: 10px;
  color: var(--gray);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.policy-table th,
.policy-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.policy-table th {
  background: rgba(44, 85, 48, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.policy-table tr:hover {
  background: rgba(44, 85, 48, 0.05);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #eee;
}

.hours-table td {
  padding: 15px 0;
  color: var(--gray);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.notice-box {
  background: #fff8e1;
  border-left: 4px solid var(--secondary);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 5px 5px 0;
}

.notice-box p {
  color: #856404;
  margin: 0;
}

/************************************
 15. GALLERY PAGE SPECIFIC
************************************/
.gallery-filters {
  padding: 40px 0 20px;
  background: #f9f9f9;
}

.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-btn {
  padding: 10px 25px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.gallery-section {
  padding: 60px 0;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.loading {
  text-align: center;
  padding: 40px;
  color: var(--gray);
}

.loading-spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.lightbox-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.lightbox-caption p {
  opacity: 0.9;
}

/************************************
 16. CONTACT US PAGE SPECIFIC
************************************/
.contact-section {
  padding: 60px 0;
}

.contact-details h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-details p {
  color: var(--gray);
  margin: 0;
}

.business-hours {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.business-hours h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.map-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#map {
  height: 400px;
  width: 100%;
}

/************************************
 17. ROOMS PAGE SPECIFIC
************************************/
.room-filters {
  padding: 40px 0 20px;
  background: #f9f9f9;
}

.rooms-section {
  padding: 60px 0;
}

.amenities-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(44, 85, 48, 0.9), rgba(44, 85, 48, 0.9)),
    url("../images/rooms/room-8.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  max-width: 900px;
  margin: 50px auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.modal-gallery {
  padding: 30px;
  background: #f9f9f9;
}

.main-image {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnails {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}

.thumbnail.active,
.thumbnail:hover {
  border-color: var(--secondary);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 30px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.modal-header h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--gray);
  margin: 0;
}

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

.feature-category h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 10px;
  color: var(--gray);
  display: flex;
  align-items: center;
}

.feature-list i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 0.9rem;
}

/************************************
 18. CAREER PAGE SPECIFIC
************************************/
.why-join {
  padding: 60px 0;
}

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

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(44, 85, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: rgba(44, 85, 48, 0.2);
  transform: scale(1.1);
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.benefit-card p {
  color: var(--gray);
  line-height: 1.6;
}

.openings-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.job-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.job-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.job-title h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.job-title p {
  color: var(--gray);
  margin: 0;
}

.job-type {
  background: rgba(44, 85, 48, 0.1);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.job-detail {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 0.9rem;
}

.job-detail i {
  color: var(--secondary);
  margin-right: 8px;
  font-size: 1rem;
}

.job-description p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.apply-btn {
  width: 100%;
}

.culture-section {
  padding: 80px 0;
}

.culture-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.culture-image {
  flex: 1;
}

.culture-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.culture-text {
  flex: 1;
}

.culture-text h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.culture-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.application-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.application-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.file-upload {
  border: 2px dashed #ddd;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload:hover {
  border-color: var(--primary);
  background: rgba(44, 85, 48, 0.05);
}

.file-upload i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.file-upload p {
  color: var(--gray);
  margin: 0;
}

/************************************
 19. ABOUT US PAGE SPECIFIC
************************************/
.story-section {
  padding: 80px 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-text {
  flex: 1;
}

.story-text h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.mission-vision {
  padding: 80px 0;
  background: #f9f9f9;
}

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

.mv-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: rgba(44, 85, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.mv-card:hover .mv-icon {
  background: rgba(44, 85, 48, 0.2);
  transform: scale(1.1);
}

.mv-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.mv-card p {
  color: var(--gray);
  line-height: 1.6;
}

.values-section {
  padding: 80px 0;
}

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

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(44, 85, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: rgba(44, 85, 48, 0.2);
  transform: scale(1.1);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--gray);
  line-height: 1.6;
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(rgba(44, 85, 48, 0.9), rgba(44, 85, 48, 0.9)),
    url("../images/rooms/room-8.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-item .stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

.team-section {
  padding: 80px 0;
  background: #f9f9f9;
}

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

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.position {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.team-info p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/************************************
 20. RESPONSIVE BREAKPOINTS
************************************/
@media (max-width: 992px) {
  .about-content,
  .contact-content,
  .story-content,
  .culture-content {
    flex-direction: column;
  }

  .about-image,
  .about-text,
  .contact-info,
  .contact-form,
  .story-image,
  .story-text,
  .culture-image,
  .culture-text {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .modal-content {
    max-width: 95%;
  }
}

.legal-hero h1,
.gallery-hero h1,
.contact-hero h1,
.rooms-hero h1,
.career-hero h1,
.about-hero h1 {
  font-size: 2.5rem;
}

.rooms-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.amenities-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

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

.filter-container,
.job-filters {
  flex-wrap: wrap;
}

.room-header,
.job-header,
.modal-header {
  flex-direction: column;
  gap: 15px;
}

.room-price,
.job-type {
  align-self: flex-start;
}

.cta-buttons {
  flex-direction: column;
  align-items: center;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .room-info h3 {
    font-size: 1.3rem;
  }

  .room-price {
    font-size: 1.2rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .legal-section,
  .application-container,
  .modal-details,
  .modal-gallery {
    padding: 20px;
  }

  .policy-table {
    display: block;
    overflow-x: auto;
  }

  .room-actions {
    flex-direction: column;
  }

  .thumbnails {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

.footer-logo-bottom {
  margin-top: 40px;
  text-align: center;
}

.footer-logo-bottom img {
  margin-right: 70px;
  width: 100px; /* adjust size if needed */
  height: auto;
  opacity: 0.9; /* optional: looks sleek */
}

/* ==================== PLEASANT HOMESTAY HEADER STYLES ==================== */

/* Header Base Styles */
.phs-header {
  background: var(--white);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(44, 85, 48, 0.1);
  transition: all 0.3s ease;
}

.phs-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 25px rgba(44, 85, 48, 0.15);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

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

/* Logo Styles */
.phs-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.phs-logo:hover {
  transform: translateY(-2px);
}

.phs-logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phs-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.phs-logo:hover .phs-logo-icon img {
  transform: scale(1.1);
}

.phs-logo-text h1 {
  font-size: 1.4rem;
  margin-bottom: 3px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.phs-logo-text p {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
  font-weight: 500;
}

/* Desktop Navigation */
.phs-main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-link {
  position: relative;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
  font-size: 0.95rem;
}

.nav-text {
  position: relative;
  z-index: 2;
}

.nav-hover {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a22 100%);
  transition: all 0.4s ease;
  z-index: 1;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-link:hover .nav-hover {
  left: 0;
}

/* CTA Button */
.phs-header-actions {
  margin-left: 15px;
}

.phs-cta-button {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a22 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
  font-size: 0.95rem;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a22 0%, var(--primary) 100%);
  transition: all 0.4s ease;
  z-index: 1;
  border-radius: 50px;
}

.phs-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
}

.phs-cta-button:hover .btn-hover-effect {
  left: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(44, 85, 48, 0.1);
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 0 2px 2px 0;
}

/* Mobile Menu Button */
.phs-mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.menu-bar {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.phs-mobile-menu-btn.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.phs-mobile-menu-btn.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.phs-mobile-menu-btn.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Side Navigation */
.phs-mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.phs-mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.phs-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  transition: all 0.4s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.phs-mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  padding: 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-logo-text h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--primary);
  font-weight: 700;
}

.mobile-logo-text p {
  font-size: 0.7rem;
  color: var(--gray);
  margin: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  background: rgba(44, 85, 48, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close:hover {
  transform: rotate(90deg);
  background: var(--primary);
  color: var(--white);
}

.mobile-nav-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 25px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  font-size: 0.95rem;
}

.mobile-nav-link:hover {
  background: rgba(44, 85, 48, 0.05);
  border-left-color: var(--primary);
  padding-left: 30px;
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--secondary);
}

.mobile-nav-footer {
  padding: 25px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a22 100%);
  color: var(--white);
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.95rem;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.85rem;
}

.mobile-contact-item i {
  color: var(--secondary);
  width: 16px;
}

/* Active state for current page */
.nav-link.active {
  background: rgba(44, 85, 48, 0.1);
  color: var(--primary);
}

.mobile-nav-link.active {
  background: rgba(44, 85, 48, 0.1);
  border-left-color: var(--primary);
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .phs-main-nav {
    display: none;
  }

  .phs-mobile-menu-btn {
    display: flex;
  }

  .phs-header-actions {
    display: none;
  }

  .phs-logo-text h1 {
    font-size: 1.2rem;
  }

  .phs-logo-text p {
    font-size: 0.7rem;
  }

  .phs-logo-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .phs-header-container {
    padding: 0 15px;
  }

  .phs-logo-text h1 {
    font-size: 1rem;
  }

  .phs-logo-icon {
    width: 35px;
    height: 35px;
  }

  .phs-logo-text p {
    display: none;
  }
}

@media (max-width: 480px) {
  .phs-mobile-nav {
    width: 280px;
  }

  .mobile-nav-header {
    padding: 20px;
  }

  .mobile-logo-text h3 {
    font-size: 1rem;
  }

  .mobile-logo-text p {
    font-size: 0.65rem;
  }
}

/************************************
  GOOGLE MAPS EMBED STYLES
************************************/
.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

#map {
  height: 400px;
  width: 100%;
  border: 0;
}

/* Custom Google Maps Styling */
.map-container iframe {
  border-radius: 10px;
  border: 2px solid var(--primary);
}

/* Directions Link Styling */
.directions-link {
  padding: 20px;
  background: rgba(44, 85, 48, 0.05);
  border-radius: 0 0 10px 10px;
  border-top: 1px solid rgba(44, 85, 48, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #map {
    height: 300px;
  }
}

@media (max-width: 480px) {
  #map {
    height: 250px;
  }

  .directions-link .btn {
    width: 100%;
    padding: 12px;
  }
}
