/* Modern CSS Reset and Variables */
:root {
  --primary-red: #e30613;
  --primary-blue: #0054a6;
  --dark-blue: #003b7f;
  --white: #ffffff;
  --black: #222222;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #495057;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

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

/* Giveaway Popup Overlay */
.giveaway-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.giveaway-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Giveaway Popup Styles */
.giveaway-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 600px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.giveaway-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.giveaway-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: 15px 20px;
  border-bottom: 1px solid var(--medium-gray);
}

.giveaway-logo {
  height: 50px;
}

.giveaway-close,
.thankyou-close {
  font-size: 24px;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.giveaway-close:hover,
.thankyou-close:hover {
  background-color: var(--light-gray);
}

.giveaway-content {
  padding: 30px;
  text-align: center;
}

.giveaway-content h2 {
  color: var(--primary-red);
  font-size: 2rem;
  margin-bottom: 20px;
}

.giveaway-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.giveaway-steps,
.thankyou-steps {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.giveaway-steps h3,
.thankyou-steps h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.giveaway-steps ul,
.thankyou-steps ul {
  list-style: none;
  text-align: left;
}

.giveaway-steps li,
.thankyou-steps li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.giveaway-steps i,
.thankyou-steps i {
  color: var(--primary-red);
  margin-right: 10px;
}

.giveaway-terms {
  background-color: rgba(0, 84, 166, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}

.giveaway-terms p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.giveaway-terms i {
  color: var(--primary-blue);
  margin-right: 8px;
}

.giveaway-social,
.thankyou-actions {
  margin-top: 25px;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  max-width: 400px;
}

.preloader-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.preloader-tagline {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 500;
}

.preloader-spinner {
  display: flex;
  justify-content: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 84, 166, 0.1);
  border-top: 4px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

section {
  padding: 100px 0;
}

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

.section-title h2 {
  font-size: 2.8rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-red);
}

.section-title p {
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 16px 35px;
  background-color: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  transition: var(--transition-smooth);
  z-index: -1;
  border-radius: 25px;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 25%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 84, 166, 0.3);
  color: var(--white);
}

.btn:hover::before {
  left: 0;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 5px 20px rgba(0, 84, 166, 0.25);
}

.btn-outline {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 84, 166, 0.2);
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-red);
  transition: var(--transition-smooth);
  z-index: -1;
  border-radius: 50px;
}

.btn-outline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 25%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
  color: var(--white);
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover::after {
  width: 300px;
  height: 300px;
}

.btn-outline:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 5px 20px rgba(227, 6, 19, 0.25);
}

/* Floating Buttons */
.floating-btns {
  position: fixed;
  z-index: 999;
  width: 100%;
  pointer-events: none;
}

/* Call Now Button */
.call-now-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: hidden;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.call-now-btn.expanded {
  width: auto;
  padding-right: 20px;
}

.call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.call-icon i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.call-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-20px);
  transition: var(--transition-smooth);
  max-width: 0;
  overflow: hidden;
}

.call-now-btn.expanded .call-content {
  opacity: 1;
  transform: translateX(0);
  max-width: 200px;
}

.call-text {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.call-number {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.call-number:hover {
  text-decoration: underline;
}

.call-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 84, 166, 0.4);
}

.call-now-btn:hover .call-icon i {
  transform: rotate(15deg);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--primary-red);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 84, 166, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 84, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 84, 166, 0);
  }
}

/* Header & Navigation - Capsule Style */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 5px;
  background: transparent;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--white);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  transition: var(--transition-smooth);
}

.header-container:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  transition: var(--transition-smooth);
}

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

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  font-size: 16px;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition-smooth);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-red);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 8px;
  border-radius: 50%;
}

.mobile-menu-btn:hover {
  color: var(--primary-red);
  background-color: rgba(227, 6, 19, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1)),
    url("/assets/img/hero-bg.jpg") no-repeat center center/cover;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-15px);
}

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-content {
  padding: 25px;
}

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

.service-content p {
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-size: 2.5rem;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: var(--transition);
}

.stat-item:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.stat-item:hover .stat-number {
  color: var(--white);
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.about-image.animate {
  transform: translateY(0);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

/* Gallery Section - 9 Image Collage Style */
.gallery {
  background-color: var(--light-gray);
  position: relative;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 70px);
  gap: 15px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.gallery-item.animate {
  transform: translateY(0);
  opacity: 1;
}

/* 9-Image Layout Pattern */
.gallery-item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-item:nth-child(2) {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item:nth-child(6) {
  grid-column: span 4;
  grid-row: span 4;
}

/* New images - same sizes as first three */
.gallery-item:nth-child(7) {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-item:nth-child(8) {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item:nth-child(9) {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-lightbox:hover {
  color: var(--primary-red);
}

.lightbox-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.prev-lightbox,
.next-lightbox {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.next-lightbox {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev-lightbox:hover,
.next-lightbox:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Contact Form Section */
.contact {
  background: var(--light-gray);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  padding: 20px;
}

.contact-info h3 {
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.contact-detail i {
  font-size: 24px;
  color: var(--primary-red);
  margin-right: 15px;
  width: 30px;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
}

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

/* CTA Section */
.cta {
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80")
      no-repeat center center/cover;
  color: var(--white);
  padding: 150px 0;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-red),
    var(--primary-blue)
  );
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease-out;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.3rem;
  font-weight: 300;
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 100px 0 30px;
  position: relative;
}

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

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-info p {
  margin-bottom: 20px;
}

.footer-contact h3,
.footer-links h3,
.footer-hours h3,
.footer-social h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after,
.footer-links h3::after,
.footer-hours h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-red);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-red);
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.footer-links ul.animate {
  transform: translateY(0);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-red);
  transform: translateX(5px);
}

.footer-hours p {
  margin-bottom: 8px;
}

/* Social Media Styles */
.footer-social {
  margin-top: 20px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-bottom a {
  color: var(--primary-red);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration: none;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .section-title h2 {
    font-size: 2.4rem;
  }
  .hero h1 {
    font-size: 3rem;
  }

  /* Gallery Collage Responsive for 9 Images */
  .gallery-collage {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(16, 70px);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(7) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(8) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item:nth-child(9) {
    grid-column: span 3;
    grid-row: span 3;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 20px;
  }

  .logo img {
    height: 60px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 1001;
    padding: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: inline-block;
    padding: 15px 0;
    width: auto;
    font-size: 1.5rem;
    position: relative;
  }

  /* Fix for the underline in mobile view */
  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: var(--transition-smooth);
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--primary-red);
  }

  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 80%; /* Adjust this value to control the underline length */
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1002;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    gap: 15px;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 2.2rem;
  }

  .cta p {
    font-size: 1.1rem;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }

  /* Responsive adjustments for Call Now Button */
  .call-now-btn {
    left: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }

  .call-icon {
    width: 50px;
    height: 50px;
  }

  .call-icon i {
    font-size: 20px;
  }

  .call-now-btn.expanded {
    padding-right: 15px;
  }

  .call-text {
    font-size: 14px;
  }

  .call-number {
    font-size: 12px;
  }

  /* Mobile button size adjustments */
  .btn {
    font-size: 14px;
    padding: 14px 28px;
  }

  /* Gallery Collage Mobile Responsive for 9 Images */
  .gallery-collage {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(18, 70px);
    gap: 10px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 3;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 15px;
  }

  .logo img {
    height: 60px;
  }

  .nav-menu {
    width: 100%;
  }

  /* Additional styling for very small screens */
  .nav-menu a {
    font-size: 1.3rem;
    padding: 12px 0;
  }

  /* Further button size adjustments for very small screens */
  .btn {
    font-size: 12px;
    padding: 12px 24px;
  }

  /* Gallery Collage Small Mobile Responsive for 9 Images */
  .gallery-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(18, 70px);
    gap: 8px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 3;
  }

  /* Giveaway Popup Responsive Styles - Made smaller for mobile */
  .giveaway-popup {
    width: 85%;
    max-width: none;
    max-height: 85vh;
    overflow-y: auto;
  }

  .giveaway-header {
    padding: 10px 15px;
  }

  .giveaway-logo {
    height: 35px;
  }

  .giveaway-content {
    padding: 15px;
  }

  .giveaway-content h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .giveaway-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .giveaway-steps {
    padding: 12px;
    margin: 15px 0;
  }

  .giveaway-steps h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .giveaway-steps li {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .giveaway-terms {
    padding: 10px;
    margin: 15px 0;
  }

  .giveaway-terms p {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .giveaway-social {
    margin-top: 15px;
  }

  .giveaway-social .btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}
