/* =========================================
   Standard Awnings & Aluminiums - style.css
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #1a4a7a;
  --primary-dark: #0f2d50;
  --primary-light: #2563a8;
  --accent: #e07b1a;
  --accent-light: #f5a647;
  --accent-dark: #c06012;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-gray: #f1f3f7;
  --mid-gray: #94a3b8;
  --dark-gray: #334155;
  --text-dark: #1e2d3d;
  --text-body: #4a5568;
  --border: #dde3ed;
  --shadow-sm: 0 2px 8px rgba(26,74,122,0.08);
  --shadow-md: 0 6px 24px rgba(26,74,122,0.12);
  --shadow-lg: 0 16px 48px rgba(26,74,122,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  overflow-x: hidden;
}
.row {
  margin-left: 0;
  margin-right: 0;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

/* ---- Utility ---- */
.section-pad { padding: 90px 0; }
.section-alt { background: var(--off-white); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224,123,26,0.1);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
}

.section-subtitle-left {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary-custom:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,26,0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar-info a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.top-bar-info a:hover { color: var(--accent-light); }
.top-bar-social a {
  color: rgba(255,255,255,0.7);
  margin-left: 14px;
  font-size: 1rem;
  transition: var(--transition);
}
.top-bar-social a:hover { color: var(--accent-light); }

/* ---- HEADER / NAVBAR ---- */
#header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,74,122,0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar { padding: 14px 0; }

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary) !important; }

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 220px;
}
.dropdown-item {
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(26,74,122,0.08);
  color: var(--primary);
  padding-left: 20px;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,74,122,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- HERO CAROUSEL ---- */
.hero-slide {
  position: relative;
  height: 88vh;
  min-height: 580px;
  max-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.carousel-item.active .hero-bg-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

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

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-title span { color: var(--accent-light); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}
.btn-hero-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,26,0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 5px;
  transition: var(--transition);
}
.carousel-indicators button.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(26,74,122,0.7);
  border-radius: 50%;
  padding: 24px;
  background-size: 16px;
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--primary-dark), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--primary-dark), transparent);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}
.marquee-track span i { color: var(--accent-light); font-size: 0.75rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- ABOUT SECTION ---- */
.about-img-wrap {
  position: relative;
  padding-bottom: 60px;
  padding-right: 40px;
}

.about-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-exp-badge {
  position: absolute;
  top: 30px;
  right: -10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.exp-num { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.exp-text { font-size: 0.75rem; opacity: 0.9; line-height: 1.4; }

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.about-body { margin-bottom: 28px; }

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-feature-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-feature-item i { color: var(--primary); font-size: 1.1rem; }

/* ---- SERVICES SECTION ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,74,122,0.2);
}

.service-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,74,122,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
  color: var(--white);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-body {
  padding: 22px;
  position: relative;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
  margin-top: -44px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { color: var(--accent); gap: 10px; }

.service-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.service-cta-card i { font-size: 3rem; color: var(--accent-light); margin-bottom: 16px; }
.service-cta-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.service-cta-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ---- COUNTER SECTION ---- */
.counter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item { padding: 20px 10px; }

.counter-icon {
  font-size: 2.2rem;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.counter-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  display: inline-block;
  line-height: 1;
}
.counter-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}
.counter-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---- WHY CHOOSE US ---- */
.why-list { display: flex; flex-direction: column; gap: 24px; }

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--primary-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.why-num {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent);
  flex-shrink: 0;
  min-width: 44px;
  opacity: 0.8;
}

.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-body); margin: 0; }

.why-img-grid {
  position: relative;
  height: 440px;
}
.why-img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.why-img-1 { width: 65%; height: 70%; top: 0; left: 0; z-index: 1; }
.why-img-2 { width: 45%; height: 55%; bottom: 0; right: 0; z-index: 2; }
.why-img-3 { width: 35%; height: 40%; top: 45%; left: 50%; transform: translateX(-50%); z-index: 3; }

.why-review-badge {
  position: absolute;
  top: 20px;
  right: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  max-width: 180px;
  z-index: 4;
  border-left: 3px solid var(--accent);
}
.why-review-badge i { color: var(--accent); font-size: 0.8rem; }
.why-review-badge p { margin: 6px 0 3px; color: var(--text-dark); font-weight: 500; }
.why-review-badge small { color: var(--mid-gray); }

/* ---- GALLERY SECTION ---- */

.vidi{
  width: 100%;
  height: 220px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gal-btn {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gal-btn:hover, .gal-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gal-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-card:hover img { transform: scale(1.08); }

.gal-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,74,122,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2.2rem;
  color: var(--white);
}
.gal-card:hover .gal-hover { opacity: 1; }

.gal-item { transition: all 0.4s ease; }
.gal-item.hidden { display: none; }

@media (max-width: 575px) {
  .gal-card img { height: 160px; }
}

/* ---- FAQ SECTION ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-btn {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 18px 22px;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
}
.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a4a7a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-body {
  padding: 16px 22px;
  color: var(--text-body);
  font-size: 0.95rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

/* ---- CONTACT SECTION ---- */
.contact-info-box,
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-box h3,
.contact-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.contact-info-item p { margin: 0; font-size: 0.9rem; }
.contact-info-item a { color: var(--text-body); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--primary); }

.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: var(--font-body);
}
.custom-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(26,74,122,0.1);
  outline: none;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

/* ---- MAP SECTION ---- */
.map-section { background: var(--off-white); }
.map-header h3 { font-size: 1.3rem; color: var(--text-dark); }
.map-header i { color: var(--primary); }
.map-container { line-height: 0; }
.map-container iframe { border: none; display: block; }

/* ---- FOOTER ---- */
.footer { background: var(--primary-dark); }

.footer-top { padding: 70px 0 40px; }

.footer p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
}
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact li i { color: var(--accent); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent-light); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---- FLOATING ICONS ---- */
.floating-icons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.floating-icons1 {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.float-icon {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1.1rem;
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  transition: var(--transition);
  overflow: hidden;
  max-width: 42px;
  position: relative;
}
.float-icon:hover { max-width: 150px; }

.float-label {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 10px;
  opacity: 0;
  transition: var(--transition);
}
.float-icon:hover .float-label { opacity: 1; }

.float-phone { background: var(--primary); }
.float-phone:hover { background: var(--primary-dark); }
.float-wa { background: #25d366; }
.float-wa:hover { background: #1da851; }
.float-mail { background: var(--accent); }
.float-mail:hover { background: var(--accent-dark); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 9998;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .about-img-wrap { padding-bottom: 50px; padding-right: 30px; }
  .about-main-img { height: 360px; }
  .why-img-grid { height: 320px; }
  .why-img-1 { width: 60%; height: 60%; }
  .why-img-2 { width: 48%; height: 50%; }
  .why-img-3 { display: none; }
}

@media (max-width: 767px) {
  .section-pad { padding: 55px 0; }
  .hero-slide { height: 75vh; min-height: 480px; }
  .hero-title { font-size: 1.85rem; }
  .hero-desc { font-size: 0.95rem; }

  .about-img-wrap { padding: 0 0 50px 0; }
  .about-img-accent { width: 150px; height: 150px; right: 0; }
  .about-exp-badge { right: 0; top: 20px; }

  .why-img-grid { height: 260px; }
  .why-img-1 { width: 65%; height: 58%; }
  .why-img-2 { width: 50%; height: 50%; }
  .why-review-badge { max-width: 150px; font-size: 0.75rem; padding: 10px 12px; }

  .contact-info-box, .contact-form-box { padding: 24px; }

  .floating-icons { top: auto; bottom: 80px; transform: none; }
  .float-icon { max-width: 42px; border-radius: 0 8px 8px 0; }

  .footer-top { padding: 50px 0 30px; }

  .gal-card img { height: 160px; }
}

@media (max-width: 575px) {
  .section-title { font-size: 1.6rem; }
  .hero-content { padding: 0 8px; }
  .top-bar { /*display: none;8*/ }
  .cu-ds-nn{
	  display:none!important
  }
  .cu-jf-cntr{
	  justify-content:center!important;
	  text-align:center!important
  }
  .counter-section { padding: 50px 0; }
  .about-img-wrap { margin-bottom: 40px; }
}
