* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; color: #333; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* ===== GLOBAL BUTTON STYLE ===== */
.btn, .btn-primary, .btn-about, .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #bb0018;
  color: #fff !important;
  padding: 14px 20px 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn:hover, .btn-primary:hover, .btn-about:hover, .btn-book:hover {
  background: #900012;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(187,0,24,0.35);
}
.btn .btn-arrow,
.btn-primary .btn-arrow,
.btn-about .btn-arrow,
.btn-book .btn-arrow {
  width: 36px; height: 36px;
  background: #fff;
  color: #bb0018;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.btn:hover .btn-arrow,
.btn-primary:hover .btn-arrow,
.btn-about:hover .btn-arrow,
.btn-book:hover .btn-arrow {
  transform: rotate(45deg);
}
/* ================================ */

/* Topbar */
.topbar {
  background: #bb0018;
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
}
.topbar-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.topbar-content {
  padding-right: 60px;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Navbar */
.navbar {
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 100;
}
.navbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 40px;
}
.navbar .logo a {
  display: flex; align-items: center; gap: 10px;
}
/* .navbar .logo img { height: 45px; width: auto; } */
.desktop-nav a {
  margin-left: 25px; font-weight: 600; color: #333; font-size: 15px;
  transition: color 0.3s;
}
.desktop-nav a:hover { color: #bb0018; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; width: 40px; height: 40px;
}
.hamburger span {
  display: block; height: 3px; width: 100%;
  background: #bb0018; border-radius: 3px; transition: all 0.3s;
}

/* Sidebar Overlay */
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 200;
  opacity: 0; transition: opacity 0.3s;
}
.sidebar-overlay.open { display: block; opacity: 1; }

/* Sidebar */
.sidebar {
  position: fixed; top: 0; left: 0;
  width: 300px; height: 100vh;
  background: #fff; z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex; flex-direction: column;
  padding: 30px 25px;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.sidebar.open { transform: translateX(0); }

.sidebar-close {
  align-self: flex-end; background: #f5f5f5; border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 16px; cursor: pointer; color: #333;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.2s;
}
.sidebar-close:hover { background: #bb0018; color: #fff; }

.sidebar-logo { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; }

.sidebar-nav { display: flex; flex-direction: column; gap: 5px; margin-bottom: 35px; }
.sidebar-nav a {
  padding: 12px 15px; font-size: 16px; font-weight: 600;
  color: #333; border-radius: 8px; transition: all 0.2s;
}
.sidebar-nav a:hover { background: #fff0f0; color: #bb0018; }

.sidebar-contact h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
  color: #999; margin-bottom: 18px;
}
.sidebar-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 18px;
}
.sidebar-contact-item span { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-item p,
.sidebar-contact-item a {
  font-size: 14px; color: #555; line-height: 1.6;
}
.sidebar-contact-item a:hover { color: #bb0018; }

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
}
.logo img{
    width: 130px !important;
    height: auto !important;
}
/* Hero */
.hero {
  background: #f5ede8;
  overflow: hidden;
  padding: 0px 0 40px;
}
.hero .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 40px 0;
  min-height: 88vh;
}
.hero-text { max-width: 560px; flex-shrink: 0; padding-bottom: 60px; align-self: center; }
.hero-text .badge {
  display: inline-block;
  background: #ede0da;
  color: #333;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid #d9ccc6;
}
.hero-text h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-text p {
  font-size: 18px;
  color: #444;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 560px;
}
.hero-text .btn-primary {
  margin-bottom: 40px;
  font-size: 17px;
}
.btn-arrow {
  width: 36px; height: 36px;
  background: #fff;
  color: #bb0018;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  transition: transform 0.3s;
}
.hero-sub {
  font-size: 17px !important;
  color: #555 !important;
  margin-bottom: 0 !important;
  max-width: 520px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}
.hero-image {
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: flex-end;
  align-self: stretch;
}
.hero-image img {
  height: 100%;
  max-height: 580px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Section Common */
section { padding: 80px 0; }
section .container { padding-left: 40px; padding-right: 40px; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .tag {
  color: #bb0018; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px;
}
.section-title h2 { font-size: 38px; color: #1a1a2e; margin-bottom: 15px; }
.section-title p { color: #666; font-size: 16px; max-width: 600px; margin: 0 auto; }

/* About */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

/* About Images */
.about-images {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  background: #e0d5cf;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-img-hex {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 240px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  background: #1a1a2e;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.about-img-hex img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* About Text */
.about-text h2 { font-size: 36px; color: #1a1a2e; margin-bottom: 20px; line-height: 1.3; }
.about-text h2 .highlight { color: #bb0018; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 28px; font-size: 15px; }

.about-badge {
  display: flex; align-items: center; gap: 15px;
  background: #f9f9f9; border: 1px solid #eee;
  padding: 16px 20px; border-radius: 12px;
  margin-bottom: 28px;
}
.about-badge-icon { font-size: 32px; flex-shrink: 0; }
.about-badge-tag {
  display: block; font-size: 11px; font-weight: 700;
  color: #bb0018; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 4px;
}
.about-badge strong { color: #1a1a2e; font-size: 15px; }

.btn-about {
  background: #1a1a2e;
}
.btn-about:hover { background: #bb0018; }

/* Mission Vision Values */
.mvv-section {
  background: #f9f9f9;
  padding: 80px 0;
}
.mvv-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
}
.mvv-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.mvv-icon-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: #fff;
}
.mvv-icon-wrap svg { width: 42px; height: 42px; }
.mvv-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1a1a2e;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.mvv-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: center;
}
.mvv-bar {
  width: 100%;
  height: 8px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .mvv-list { grid-template-columns: 1fr; }
}

/* Services */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.service-card {
  background: #f9f9f9; padding: 30px 25px; border-radius: 12px;
  border-top: 4px solid #bb0018; transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-card h3 { color: #1a1a2e; margin-bottom: 12px; font-size: 18px; }
.service-card p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 15px; }
.service-card ul { list-style: none; }
.service-card ul li { color: #555; font-size: 13px; padding: 4px 0; }
.service-card ul li::before { content: "✓ "; color: #bb0018; font-weight: bold; }

/* Why Choose */
.why-choose {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0f1f3d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(187,0,24,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.why-choose::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(187,0,24,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.why-choose .section-title h2 { color: #fff; }
.why-choose .section-title p { color: rgba(255,255,255,0.6); }
.why-choose .tag { color: #ff6b6b !important; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
  cursor: default;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(187,0,24,0.12), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 20px;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(187,0,24,0.4);
  background: rgba(255,255,255,0.07);
}
.why-card:hover::before { opacity: 1; }

.why-card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}
.why-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(187,0,24,0.15);
  border: 1px solid rgba(187,0,24,0.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover .why-icon-wrap {
  background: rgba(187,0,24,0.3);
  transform: scale(1.1);
}
.why-icon { font-size: 28px; }
.why-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.why-card-line {
  width: 40px; height: 3px;
  background: #bb0018;
  border-radius: 2px;
  transition: width 0.35s;
}
.why-card:hover .why-card-line { width: 70px; }

/* Steps */
.steps { background: #f9f9f9; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
  background: #fff; padding: 35px 30px; border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07); text-align: center;
}
.step-num {
  width: 50px; height: 50px; background: #bb0018; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: bold; margin: 0 auto 20px;
}
.step-card h3 { color: #1a1a2e; margin-bottom: 12px; }
.step-card p { color: #666; font-size: 14px; line-height: 1.7; }

/* Stats */
.stats { background: #bb0018; color: #fff; padding: 70px 0; }
.stats .container { padding-left: 40px; padding-right: 40px; }
.stats-title { margin-bottom: 50px; }
.stats-title .tag { color: rgba(255,255,255,0.7); }
.stats-title h2 { color: #fff; }
.stats-title p { color: rgba(255,255,255,0.8); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 35px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s, transform 0.3s;
}
.stat-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.stat-item h3 { font-size: 52px; font-weight: 800; margin-bottom: 6px; line-height: 1; }
.stat-item strong { font-size: 16px; display: block; margin-bottom: 8px; opacity: 0.95; }
.stat-item p { font-size: 13px; opacity: 0.75; line-height: 1.5; }

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats { padding: 50px 0; }
  .stats .container { padding-left: 16px; padding-right: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-item { padding: 18px 10px; border-radius: 12px; }
  .stat-item h3 { font-size: 26px; }
  .stat-item strong { font-size: 12px; margin-bottom: 6px; }
  .stat-item p { font-size: 11px; line-height: 1.4; }
}

/* Testimonials */
.testimonials { background: #f5f5f5; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid #bb0018;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.testimonial-card .stars { color: #f4c430; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { color: #555; font-style: italic; margin-bottom: 24px; line-height: 1.8; font-size: 15px; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: #bb0018; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.testimonial-card .author strong { color: #1a1a2e; display: block; font-size: 15px; }
.testimonial-card .author span { color: #888; font-size: 13px; }

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery {
  background: #111;
  padding: 80px 0;
}
.gallery-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gallery-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.gallery-header p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  max-width: 520px;
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1e1e1e;
  cursor: pointer;
}
.gallery-item.gallery-tall {
  grid-row: 1 / span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.75);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.55);
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.gallery-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.gallery-tall { grid-row: auto; }
  .gallery-item { height: 200px; }
}

/* FAQ */
.faq { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e0e0e0; border-radius: 10px; margin-bottom: 15px; overflow: hidden;
}
.faq-question {
  padding: 20px 25px; font-weight: 600; color: #1a1a2e; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; transition: background 0.3s;
}
.faq-question:hover { background: #f9f9f9; }
.faq-answer { padding: 0 25px 20px; color: #666; line-height: 1.7; font-size: 15px; }

/* Team */
.team { background: #f9f9f9; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.team-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07); text-align: center;
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-avatar {
  width: 100%; height: 260px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-avatar img { transform: scale(1.05); }
.team-info { padding: 20px; }
.team-info h3 { color: #1a1a2e; margin-bottom: 5px; }
.team-info .role { color: #bb0018; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.team-info p { color: #666; font-size: 13px; line-height: 1.6; }

/* Contact / Booking */
.contact { background: #1a1a2e; color: #fff; }
.contact .section-title h2 { color: #fff; }
.contact .section-title p { color: #aaa; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; color: #ccc; font-size: 14px; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: #fff; font-size: 14px; outline: none; transition: border 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #888; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #bb0018;
}
.form-group select option { background: #1a1a2e; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent { margin-bottom: 20px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #bb0018;
  cursor: pointer;
}
.consent-label span {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.6;
}
.consent-link {
  color: #bb0018;
  font-weight: 600;
  text-decoration: none;
}
.consent-link:hover { text-decoration: underline; }
.btn-submit {
  width: 100%; background: #bb0018; color: #fff; padding: 14px 20px 14px 28px;
  border: none; border-radius: 50px; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover {
  background: #900012;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(187,0,24,0.35);
}
.contact-info h3 { font-size: 24px; margin-bottom: 25px; }
.info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.info-icon {
  width: 45px; height: 45px; background: rgba(187,0,24,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.info-item h4 { color: #fff; margin-bottom: 4px; }
.info-item p, .info-item a { color: #aaa; font-size: 14px; }
.info-item a:hover { color: #bb0018; }

/* Floating Buttons — each independently positioned so hover on one never shifts others */
.float-btns { display: contents; }

.float-btn {
  position: fixed;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  overflow: hidden;
  padding: 0 14px;
  width: 50px;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s;
  white-space: nowrap;
  z-index: 999;
}

/* Stack them: WhatsApp bottom, Email middle, Call top */
.float-call     { bottom: 196px; }
.float-email    { bottom: 134px; }
.float-whatsapp { bottom: 72px;  }

.float-btn:hover {
  width: 145px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.float-label {
  overflow: hidden;
  max-width: 0;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: max-width 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s,
              margin 0.35s;
  margin-right: 0;
  order: -1;
}
.float-btn:hover .float-label {
  max-width: 100px;
  opacity: 1;
  margin-right: 10px;
}
.float-btn i { flex-shrink: 0; }

/* Colors */
.float-call     { background: #bb0018; animation: float-pulse 2.5s ease-in-out infinite; }
.float-email    { background: #1a73e8; animation: float-pulse 2.5s ease-in-out infinite 0.4s; }
.float-whatsapp { background: #25d366; animation: float-pulse 2.5s ease-in-out infinite 0.8s; }

.float-call:hover     { background: #900012; animation: none; }
.float-email:hover    { background: #1558b0; animation: none; }
.float-whatsapp:hover { background: #1da851; animation: none; }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0.35); }
  50%       { box-shadow: 0 4px 15px rgba(0,0,0,0.25), 0 0 0 8px rgba(255,255,255,0); }
}

@media (max-width: 480px) {
  .float-btn  { width: 44px; height: 44px; font-size: 17px; padding: 0 12px; right: 12px; }
  .float-btn:hover { width: 44px; }
  .float-call     { bottom: 166px; }
  .float-email    { bottom: 114px; }
  .float-whatsapp { bottom: 62px;  }
  .float-label { display: none; }
}

/* Footer */
footer {
  background: #0d0d1a; color: #aaa; padding: 40px 0;
}
footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; padding-left: 40px; padding-right: 40px;
}
footer p { font-size: 14px; }
.footer-links a { color: #aaa; margin-left: 20px; font-size: 14px; }
.footer-links a:hover { color: #bb0018; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; transition: background 0.3s;
}
.social-links a:hover { background: #bb0018; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 52px; }
  .hero .container { flex-direction: column; align-items: center; padding-bottom: 0; }
  .hero-text { padding-bottom: 40px; }
  .hero-image { justify-content: center; width: 100%; }
  .hero-image img { height: 50vh; width: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 380px; margin-bottom: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .logo img {
    width: 80px !important;
    height: auto !important;
}
  .navbar .container { padding: 15px 20px; }
  section { padding: 60px 0; }
  section .container { padding-left: 20px; padding-right: 20px; }
  .hero .container { padding: 60px 20px 0; }
  .stats .container { padding-left: 20px; padding-right: 20px; }
  footer .container { flex-direction: column; text-align: center; padding: 30px 20px; }
  .hero-text h1 { font-size: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-links a { margin: 0 10px; }
}
