/* ===================================
   PRAGANYA BUILDING CONTRACTOR STYLES
   Theme: Orange & Black
   Author: Custom Design
   =================================== */

/* Root Variables */
:root {
  --primary-color: #ff6b35;
  --primary-dark: #e85d2a;
  --secondary-color: #1a1a1a;
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  --font-heading: "Rajdhani", sans-serif;
  --font-body: "Barlow", sans-serif;

  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

.section-padding {
  padding: 100px 0;
}

/* Utility Classes */
.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.8;
}

.rounded-custom {
  border-radius: 12px;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-dark {
  background-color: var(--secondary-color) !important;
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 40px;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header-main {
  position: relative;
  z-index: 1000;
}

.navbar {
  padding: 1.5rem 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1.25rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.cta-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: var(--transition);
}

.cta-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

/* ===================================
   HERO SLIDER
   =================================== */

.hero-slider {
  position: relative;
  margin-top: 0;
}

.carousel-item {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(255, 107, 53, 0.3) 100%
  );
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.slide-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.9);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carousel-caption h1 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  color: var(--gray-200);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.slide-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slide-actions .btn {
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 53, 0.8);
  border-radius: 50%;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 0.5;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--primary-color);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  width: 150px;
  height: 150px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transform: rotate(-5deg);
  transition: var(--transition);
}

.experience-badge:hover {
  transform: rotate(0deg) scale(1.05);
}

.badge-content {
  text-align: center;
  color: var(--white);
}

.badge-content .years {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.badge-content .text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.about-features {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.about-features .feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.about-features .feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.about-features .feature-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-700);
}

/* ===================================
   SERVICES SECTION
   =================================== */

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover::before {
  height: 100%;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 107, 53, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--white);
  transform: scale(1.1) rotate(360deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-link {
  color: var(--white);
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.why-card:hover {
  border-top-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: var(--transition);
}

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

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}

.why-card p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 2rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

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

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  color: var(--primary-color);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ===================================
   STATS COUNTER SECTION
   =================================== */

.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */

.contact-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.contact-form .form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

/* ===================================
   LOCATION SECTION
   =================================== */

.contact-info-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.contact-info-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--primary-color);
  font-weight: 600;
}

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

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
  color: var(--gray-300);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-brand .brand-icon {
  width: 50px;
  height: 50px;
}

.footer-description {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--gray-400);
  font-family: var(--font-body);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

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

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-400);
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: var(--transition);
}

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

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-bottom i.fa-heart {
  color: var(--primary-color);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ===================================
   PAGE HEADER (Inner Pages)
   =================================== */

.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px; /* ← change this to match your navbar height */
}

/* Fix 2: container needs relative + z-index to sit above overlay */
.page-header .container {
  position: relative;
  z-index: 10; /* ← add this */
  width: 100%;
}

/* Fix 3: add background-repeat just to be safe */
.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; /* ← add this */
  z-index: 0; /* ← add this */
}

/* Fix 1: overlay needs z-index so content sits above it */
.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 107, 53, 0.4) 100%
  );
  z-index: 1; /* ← add this */
}

.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  backdrop-filter: blur(10px);
}

.breadcrumb-item {
  color: var(--gray-200);
}

.breadcrumb-item a {
  color: var(--white);
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--gray-300);
}

/* ===================================
   ABOUT PAGE SPECIFIC
   =================================== */

.vision-mission-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary-color);
  transition: var(--transition);
  height: 100%;
}

.vision-mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.vision-mission-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 107, 53, 0.2)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.vision-mission-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.value-icon {
  width: 70px;
  height: 70px;
  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: 1.75rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.team-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.team-contact a {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: var(--transition);
}

.team-contact a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ===================================
   SERVICE PAGE SPECIFIC
   =================================== */

.service-detail-section {
  margin-bottom: 4rem;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-detail-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  opacity: 0.3;
}

.process-step h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ===================================
   CONTACT PAGE SPECIFIC
   =================================== */

.contact-info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 107, 53, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.contact-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-features .feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-features h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-features p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.owner-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.owner-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.owner-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.owner-details p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.owner-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.owner-contact a {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-table {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-800);
}

.hours-row .time {
  color: var(--primary-color);
  font-weight: 600;
}

.hours-row.closed .time {
  color: var(--gray-500);
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.social-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.social-link.instagram {
  border-left-color: #e1306c;
}

.social-link.email {
  border-left-color: var(--primary-color);
}

.social-link.phone {
  border-left-color: #25d366;
}

.social-link i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
}

.social-link.instagram i {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
}

.social-link.email i {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.social-link.phone i {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.social-link h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.social-link p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gray-800);
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 107, 53, 0.05)
  );
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
}

.cta-content {
  background: rgba(0, 0, 0, 0.2);
  padding: 3rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-content .btn-light {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 0.875rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.cta-content .btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(26, 26, 26, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .carousel-caption h1 {
    font-size: 2.5rem;
  }

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

  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .slide-actions {
    flex-direction: column;
  }

  .slide-actions .btn {
    width: 100%;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: 20px;
  }

  .badge-content .years {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .page-header {
    height: 300px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .owner-card {
    flex-direction: column;
    text-align: center;
  }

  .owner-image {
    margin: 0 auto;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .carousel-caption h1 {
    font-size: 1.75rem;
  }

  .service-card,
  .why-card,
  .value-card {
    margin-bottom: 1.5rem;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--primary-color);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
}
