/*--------------------------------------------------*/
/* MODERN STYLES - SOL Y MAR UNAWATUNA */
/*--------------------------------------------------*/

/* CSS Variables for Theme */
:root {
  --primary-color: #e67e22;
  --primary-dark: #d35400;
  --text-dark: #2c3e50;
  --text-light: #555;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
  --border-radius: 12px;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
}

/* Modern Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

/* Global max-width wrapper */
.site-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 150px;
  height: 150px;
  animation: pulse 2s infinite;
  margin-bottom: 30px;
}

.loading-wave {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.loading-wave span {
  width: 15px;
  height: 50px;
  background: var(--white);
  border-radius: 10px;
  animation: wave 1.2s infinite ease-in-out;
}

.loading-wave span:nth-child(2) { animation-delay: 0.1s; }
.loading-wave span:nth-child(3) { animation-delay: 0.2s; }
.loading-wave span:nth-child(4) { animation-delay: 0.3s; }
.loading-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 40%, 100% { transform: scaleY(0.4); }
  20% { transform: scaleY(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Modern Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  z-index: 9999;
  transition: all var(--transition-fast);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
  transition: all var(--transition-fast);
}

nav.scrolled .logo {
  height: 50px;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
}

nav.scrolled .main-nav a {
  color: var(--text-dark);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Navbar Book Now Button */
.main-nav .btn-primary {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 25px;
  margin-left: 1rem;
}

.main-nav .btn-primary::after {
  display: none;
}

nav.scrolled .main-nav .btn-primary {
  padding: 0.6rem 1.5rem;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 28px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition-fast);
  left: 0;
}

nav.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.mobile-nav-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.mobile-nav-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* Modern Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('../images/hero_main.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.hero-content {
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  font-family: 'Lobster Two', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .slogan {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

/* Modern Section Styling */
.section {
  padding: 5rem 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* Modern Features Cards */
.features {
  background: var(--background-light);
}

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

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-light);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

/* Modern Gallery */
.gallery {
  padding: 5rem 0;
  background: var(--white);
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: all var(--transition-fast);
  line-height: 0; /* Remove any potential spacing */
}

.gallery-item:hover {
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Ensure no inline spacing */
  transition: transform var(--transition-medium);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-text {
  color: var(--white);
  width: 100%;
}

.gallery-text h4 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  line-height: 1.2;
}

.gallery-text p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}

/* Modern Room Cards */
.rooms {
  background: var(--background-light);
}

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

.room-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

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

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

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

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

.room-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.room-content {
  padding: 2rem;
}

.room-content h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.room-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.room-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.room-features {
  list-style: none;
  margin: 1.5rem 0;
}

.room-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.room-features li i {
  color: var(--primary-color);
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

.btn-room {
  width: 100%;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
}

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

/* Pricing Note */
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.pricing-note p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* Modern Room Modal */
.room-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.room-modal.active {
  display: block;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  max-width: 1000px;
  width: 90%;
  margin: 2rem auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  position: relative;
  padding: 1.5rem 2rem;
  background: var(--background-light);
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--text-dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.modal-gallery {
  position: relative;
}

.gallery-main {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.thumb.active,
.thumb:hover {
  opacity: 1;
}

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

.modal-info {
  display: flex;
  flex-direction: column;
}

.info-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--background-light);
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.tab-content {
  display: none;
  min-height: 200px;
  padding: 1rem 0;
}

.tab-content.active {
  display: block !important;
  animation: fadeIn 0.3s ease;
}

/* Ensure features list is visible */
#features.tab-content {
  overflow-y: auto;
  max-height: 400px;
}

#featuresList {
  list-style: none;
  padding: 0;
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: var(--background-light);
  border-radius: 8px;
}

.amenity-item i {
  color: var(--primary-color);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

/* Features List Styling */
#featuresList li {
  display: flex;
  align-items: center;
  padding: 0.8rem 0;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

#featuresList li:last-child {
  border-bottom: none;
}

#featuresList li i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1rem;
}

.modal-footer {
  padding: 1.5rem 2rem;
  background: var(--background-light);
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.price-display small {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    background-attachment: scroll;
    background-position: center center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mobile-nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right var(--transition-fast);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 0.8rem 0;
    width: 100%;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: 300px;
  }

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

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

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

  .modal-content {
    margin: 0;
    border-radius: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .modal-body {
    flex: 1;
    overflow-y: auto;
  }

  .modal-footer {
    position: sticky;
    bottom: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
}

@media (max-width: 480px) {
  .hero {
    background-attachment: scroll; /* Fixed backgrounds don't work well on mobile */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    aspect-ratio: 16/9;
  }
  
  .booking-options {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Booking Section */
.booking {
  background: var(--white);
}

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

.booking-card {
  background: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-fast);
}

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

.booking-card img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.contact-booking h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.phone-number {
  display: block;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0.5rem 0;
  transition: color var(--transition-fast);
}

.phone-number:hover {
  color: var(--primary-dark);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

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

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
  background: var(--background-light);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

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

.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  color: var(--text-dark);
  font-weight: 600;
  font-style: normal;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.info-item p,
.info-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.info-item a:hover {
  color: var(--primary-color);
}

.info-item div a {
  display: block;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto 2rem;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.hidden { display: none; }