/* Sailing Billabong - Component Styles */

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--light-blue);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-accent);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: var(--navy-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: var(--light-blue);
  border-radius: 15px;
  z-index: -1;
}

/* ===== IMAGE CAROUSEL ===== */
.image-carousel {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--grey-light);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
  display: none;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  display: block;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.dot.active {
  background: var(--blue-accent);
  border-color: white;
  transform: scale(1.2);
}

/* Carousel Arrow Navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--navy-primary);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-light);
}

.carousel-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-medium);
}

.carousel-arrow.prev {
  left: 15px;
}

.carousel-arrow.next {
  right: 15px;
}

/* ===== TOUR CARDS ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tour-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border-left: 4px solid var(--blue-accent);
}

.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.tour-card h3 {
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.tour-duration {
  background: var(--light-blue);
  color: var(--navy-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.tour-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--blue-accent);
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.testimonial-author {
  border-top: 2px solid var(--light-blue);
  padding-top: 1rem;
}

.testimonial-author strong {
  color: var(--navy-primary);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== CTA BUTTONS CONTAINER ===== */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HEADER COMPONENTS ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.02);
  text-decoration: none;
}

/* Logo text styling */
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50px; /* Same height as logo */
}

.logo-text-line {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    min-width: auto;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .cta-btn {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
  
  .header-right {
    gap: 0.5rem;
  }
  
  /* Logo text responsive adjustments */
  .logo-text-line {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .feature-card,
  .tour-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .about-preview {
    gap: 1.5rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* ===== ENHANCED FOOTER STYLES ===== */
.footer {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: var(--grey-medium);
  margin-top: 0; /* Remove gap between sections */
  border-top: 3px solid var(--navy-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 3rem 0 2rem;
  align-items: start;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-brand-text h3 {
  color: var(--text-light);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.footer-tagline {
  color: var(--blue-accent);
  font-size: 0.85rem;
  margin: 0.25rem 0 0 0;
  opacity: 0.9;
}

.footer-description {
  color: var(--grey-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-badge {
  background: rgba(44, 90, 160, 0.15);
  color: var(--blue-accent);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(44, 90, 160, 0.3);
}

/* Footer Sections */
.footer-section {
  text-align: left;
}

.footer-heading {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--navy-primary);
  border-radius: 1px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--grey-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--blue-accent);
  transform: translateX(3px);
}

/* Contact Section */
.footer-contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.contact-icon {
  font-size: 1rem;
  width: 18px;
  text-align: center;
  opacity: 0.8;
}

.contact-item a {
  color: var(--grey-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--blue-accent);
}

.contact-item span {
  color: var(--grey-medium);
}

/* Footer Social */
.footer-social h5 {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--grey-medium);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: var(--blue-accent);
  background: rgba(44, 90, 160, 0.2);
  transform: translateY(-2px);
  border-color: var(--navy-primary);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  /* Ensure background extends to full width */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom-content p {
  color: var(--grey-medium);
  margin: 0;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-legal a {
  color: var(--grey-medium);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer-legal a:hover {
  color: var(--blue-accent);
}

.footer-legal span {
  color: var(--grey-medium);
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem 0 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer-brand-text {
    text-align: center;
  }
  
  .footer-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--blue-accent) 100%);
  color: var(--text-light);
  padding: 8rem 0 4rem;
  text-align: center;
}

.blog-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--grey-light);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--blue-accent);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--blue-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: var(--navy-primary);
}

/* Latest Posts Section */
.latest-posts {
  background: var(--bg-light);
  padding: 4rem 0;
}

.latest-posts h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--navy-primary);
  margin-bottom: 3rem;
}

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.latest-post-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.latest-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.latest-post-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--grey-light);
}

.latest-post-content {
  padding: 1.25rem;
}

.latest-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.latest-post-category {
  background: var(--blue-accent);
  color: var(--text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.latest-post-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.latest-post-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.latest-post-card p {
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Article Page Styles */
.article-page {
  padding-top: 80px;
}

.article-hero {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--blue-accent) 100%);
  color: var(--text-light);
  padding: 4rem 0;
}

.article-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.article-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.article-breadcrumb a:hover {
  opacity: 0.7;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

.article-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-excerpt {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
}

.article-content {
  padding: 4rem 0;
}

.article-image-container {
  margin-bottom: 3rem;
  text-align: center;
}

.article-featured-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-body h2 {
  color: var(--navy-primary);
  font-size: 2rem;
  margin: 2.5rem 0 1.5rem;
  font-weight: 700;
}

.article-body h3 {
  color: var(--navy-primary);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-footer {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-light);
}

.article-tags {
  margin-bottom: 2rem;
}

.article-tag {
  display: inline-block;
  background: var(--grey-light);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background: var(--blue-light);
  color: var(--navy-primary);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  color: var(--blue-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: var(--navy-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-hero {
    padding: 6rem 0 3rem;
  }
  
  .blog-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .latest-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .latest-posts h2 {
    font-size: 2rem;
  }
  
  .article-hero {
    padding: 3rem 0;
  }
  
  .article-hero h1 {
    font-size: 2.2rem;
  }
  
  .article-excerpt {
    font-size: 1.1rem;
  }
  
  .article-content {
    padding: 3rem 0;
  }
  
  .article-featured-image {
    height: 250px;
  }
  
  .article-body {
    font-size: 1rem;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 54, 93, 0.4), rgba(44, 90, 160, 0.3));
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  padding: 2rem;
}

.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.contact-hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(135, 206, 235, 0.2);
  color: var(--blue-accent);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(135, 206, 235, 0.4);
  backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form */
.contact-form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--light-blue);
}

.contact-form-container h2 {
  color: var(--navy-primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.contact-form-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* Form row removed - using single column layout */

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  font-weight: 500;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Info - Simplified Single Card */
.contact-info-card-single {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--light-blue);
}

.contact-info-card-single h2 {
  color: var(--navy-primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-info-card-single .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-light);
}

.contact-info-card-single .contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.contact-info-card-single .contact-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-details strong {
  color: var(--navy-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-details a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--blue-accent);
}

.contact-details span {
  color: var(--text-body);
}

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hours-info span {
  color: var(--text-body);
}

.hours-alt {
  color: var(--text-muted) !important;
  font-size: 0.85rem;
}

/* Contact Social - Simplified */
.contact-social-simple {
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-light);
  text-align: center;
}

.contact-social-simple strong {
  color: var(--navy-primary);
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* FAQ Section */
.contact-faq {
  padding: 4rem 0;
}

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

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.faq-item h3 {
  color: var(--navy-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-body);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    gap: 3rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero-content p {
    font-size: 1.1rem;
  }
  
  .contact-hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Form row removed - single column layout */
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-info-card-single {
    padding: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-hero-content p {
    font-size: 1rem;
  }
  
  .contact-form-container,
  .contact-info-card-single,
  .faq-item {
    padding: 1.25rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
